s-httpd

mildly suckless httpd
Log | Files | Refs | README | LICENSE

s-httpd.c (170B)


      1 /*
      2  * s-httpd.c -- main file
      3  */
      4 
      5 #include <stdio.h>
      6 #include <stdlib.h>
      7 
      8 #include "cli.h"
      9 
     10 int main(int argc, char** argv)
     11 {
     12 	cli(argc, argv);
     13 
     14 	return EXIT_SUCCESS;
     15 }
     16