Made the webserver logging follow the popular pattern of foo_???() being declared in foo.h and defined in foo.c.

This commit is contained in:
oliverschmidt 2007-04-23 21:19:55 +00:00
parent ca2add3641
commit 2662a31d30
6 changed files with 29 additions and 28 deletions

View file

@ -29,14 +29,17 @@
*
* This file is part of the Contiki operating system
*
* $Id: webserver.h,v 1.1 2006/06/17 22:41:15 adamdunkels Exp $
* $Id: webserver.h,v 1.2 2007/04/23 21:19:55 oliverschmidt Exp $
*
*/
#ifndef __WEBSERVER_H__
#define __WEBSERVER_H__
#include "contiki.h"
#include "contiki-net.h"
PROCESS_NAME(webserver_process);
void webserver_log(char *msg);
void webserver_log_file(uip_ipaddr_t *requester, char *file);
#endif /* __WEBSERVER_H__ */