cgi frontend
[henge/webcc.git] / src / ock / curl_sendmail.c
1 /*!@file
2 \brief Mail router for OCKoreanMartialArts.com
3 \details This mail routing system is intended to run as a daemon for fastcgi
4 and stores usage information in a database before sending mail to the
5 administrator
6 \author Ken
7 \date Sept 2016
8 ----------------------------------------------------------------------------*/
9 /* Standard */
10 #include <stdlib.h>
11 #include <string.h> //mem
12 /* Third Party */
13 #include <curl/curl.h>
14 /* Internal */
15 #include <ock/ock.h>
16
17 int send_mail(void);
18
19 int
20 send_mail
21 ()
22 { return 0;
23 }