Subversion Repositories freemyipod

Rev

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

Rev 58 Rev 71
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
#include "global.h"
28
#include "global.h"
29
 
29
 
30
 
30
 
31
void* memcpy(void* destination, const void* source, size_t num) ICODE_ATTR;
-
 
32
void* memset(void* ptr, int value, size_t num) ICODE_ATTR;
-
 
33
int memcmp(const void* ptr1, const void* ptr2, size_t num) ICODE_ATTR;
-
 
34
void* memchr(const void* ptr, int value, size_t num) ICODE_ATTR;
-
 
35
 
-
 
36
 
-
 
37
#ifndef NULL
31
#ifndef NULL
38
#define NULL ((void*)0)
32
#define NULL ((void*)0)
39
#endif
33
#endif
40
 
34
 
41
#ifndef MIN
35
#ifndef MIN