Subversion Repositories freemyipod

Rev

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

Rev 71 Rev 113
Line 1... Line 1...
1
#include "global.h"
1
#include "global.h"
2
#include <stdarg.h>
2
#include <stdarg.h>
3
#include <string.h>
3
#include "include/string.h"
4
#include <stdbool.h>
-
 
5
 
4
 
6
int isspace(int c)
5
int isspace(int c)
7
{
6
{
8
    return (c == ' ') || (c == '\t') || (c == '\n');
7
    return (c == ' ') || (c == '\t') || (c == '\n');
9
}
8
}