|
Server 0.0.1
HTTP/REST server implementation
|
00001 00026 #ifndef __HTTP_INTRO_H__ 00027 #define __HTTP_INTRO_H__ 00028 00029 #include <sys/types.h> 00030 00031 typedef size_t (* fptr_httpIntroSizeGet)(void *); 00032 typedef char * (* fptr_httpIntroToString)(void *, char *); 00033 00034 extern const struct interface i_HttpIntro; 00035 00036 struct i_HttpIntro { 00037 const struct interface * const _; 00038 fptr_httpIntroSizeGet sizeGet; 00039 fptr_httpIntroToString toString; 00040 }; 00041 00042 extern size_t httpIntroSizeGet(void *); 00043 extern char * httpIntroToString(void *, char *); 00044 00045 #endif // __HTTP_INTRO_H__ 00046 00047 // vim: set ts=4 sw=4: