Subversion Repositories freemyipod

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 16
Line 23... Line 23...
23
 
23
 
24
#include "global.h"
24
#include "global.h"
25
#include <string.h>
25
#include <string.h>
26
#include <limits.h>
26
#include <limits.h>
27
 
27
 
-
 
28
#ifndef _CONST
-
 
29
#define _CONST const
-
 
30
#endif
-
 
31
 
28
size_t strlen(_CONST char *str)
32
size_t strlen(_CONST char *str)
29
{
33
{
30
  _CONST char *start = str;
34
  _CONST char *start = str;
31
 
35
 
32
  while (*str)
36
  while (*str)