Adjusted source formatting.
This commit is contained in:
parent
42d0fe9c18
commit
f70efdf7ad
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Adam Dunkels <adam@sics.se>
|
* Author: Adam Dunkels <adam@sics.se>
|
||||||
*
|
*
|
||||||
* $Id: httpd-fs.c,v 1.1 2006/06/17 22:41:14 adamdunkels Exp $
|
* $Id: httpd-fs.c,v 1.2 2007/04/22 09:52:33 oliverschmidt Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "contiki-net.h"
|
#include "contiki-net.h"
|
||||||
|
@ -50,8 +50,8 @@ httpd_fs_strcmp(const char *str1, const char *str2)
|
||||||
{
|
{
|
||||||
u8_t i;
|
u8_t i;
|
||||||
i = 0;
|
i = 0;
|
||||||
loop:
|
|
||||||
|
|
||||||
|
loop:
|
||||||
if(str2[i] == 0 ||
|
if(str2[i] == 0 ||
|
||||||
str1[i] == '\r' ||
|
str1[i] == '\r' ||
|
||||||
str1[i] == '\n') {
|
str1[i] == '\n') {
|
||||||
|
@ -62,7 +62,6 @@ httpd_fs_strcmp(const char *str1, const char *str2)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
++i;
|
++i;
|
||||||
goto loop;
|
goto loop;
|
||||||
}
|
}
|
||||||
|
@ -107,8 +106,7 @@ httpd_fs_init(void)
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
#if HTTPD_FS_STATISTICS
|
#if HTTPD_FS_STATISTICS
|
||||||
u16_t httpd_fs_count
|
u16_t httpd_fs_count(char *name)
|
||||||
(char *name)
|
|
||||||
{
|
{
|
||||||
struct httpd_fsdata_file_noconst *f;
|
struct httpd_fsdata_file_noconst *f;
|
||||||
u16_t i;
|
u16_t i;
|
||||||
|
|
Loading…
Reference in a new issue