diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
| commit | 876fc624df9728ee0feee26e1b31b53ed9ef3326 (patch) | |
| tree | e20814ab6d07fb892284dcee11bc492532bdabaa /src/base/checkFront.h | |
| parent | dff1cbc31ca8d585c01f5bebd08e50cf07fd2b0c (diff) | |
convert all name function from oldName to new_name
Diffstat (limited to 'src/base/checkFront.h')
| -rw-r--r-- | src/base/checkFront.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/checkFront.h b/src/base/checkFront.h index 85ed2fb..4e7781d 100644 --- a/src/base/checkFront.h +++ b/src/base/checkFront.h @@ -12,10 +12,10 @@ # include "list.h" # include "server.h" -extern list_t *newCheckFront(); -extern void addMsgInCheckFront(list_t * list, char *msg, int type, int id); -extern void eventMsgInCheckFront(client_t * client); -extern void delMsgInCheckFront(list_t * listCheckFront, int id); -extern void destroyCheckFront(list_t * p); +extern list_t *checkFront_new(); +extern void checkFront_add_msg(list_t * list, char *msg, int type, int id); +extern void checkFront_event(client_t * client); +extern void checkFront_del_msg(list_t * listCheckFront, int id); +extern void checkFront_destroy(list_t * p); #endif |