7f75f5eb1e
*Due space limitations only the debug version of kenobigc is supported, this means there is a bit less space for cheats. git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@2 be6c1b03-d731-4111-a574-e37d80d43941
24 lines
672 B
C
24 lines
672 B
C
#ifndef _STRING_H_
|
|
#define _STRING_H_
|
|
|
|
#include "global.h"
|
|
|
|
char *strcpy(char *, const char *);
|
|
char *strncpy(char *, const char *, size_t);
|
|
int strcmp(const char *, const char *);
|
|
int strncmp(const char *p, const char *q, size_t n);
|
|
size_t strlen(const char *);
|
|
size_t strnlen(const char *, size_t);
|
|
char *strchr(const char *s, int c);
|
|
extern void *memset(void *, int, size_t);
|
|
|
|
void udelay(u32 d);
|
|
|
|
//void *memcpy(void *, const void *, size_t);
|
|
//void *memcpy(void *, const void *, size_t);
|
|
//void *memcpy(void *, const void *, size_t);
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
int sprintf( char *astr, const char *fmt, ...);
|
|
|
|
#endif
|