tresp.h - quark - quark web server
 (HTM) git clone git://git.suckless.org/quark
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tresp.h (280B)
       ---
            1 /* See LICENSE file for copyright and license details. */
            2 #ifndef RESP_H
            3 #define RESP_H
            4 
            5 #include <sys/stat.h>
            6 #include <sys/types.h>
            7 
            8 #include "http.h"
            9 
           10 enum status resp_dir(int, const struct response *);
           11 enum status resp_file(int, const struct response *);
           12 
           13 #endif /* RESP_H */