11 lines
293 B
C
11 lines
293 B
C
|
/* Function prototypes. */
|
||
|
|
||
|
/* main.c */
|
||
|
_PROTOTYPE(int main, (int argc, char **argv));
|
||
|
|
||
|
/* store.c */
|
||
|
_PROTOTYPE(int do_publish, (message *m_ptr));
|
||
|
_PROTOTYPE(int do_retrieve, (message *m_ptr));
|
||
|
_PROTOTYPE(int do_subscribe, (message *m_ptr));
|
||
|
_PROTOTYPE(int do_getsysinfo, (message *m_ptr));
|