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
126 lines
1.9 KiB
C
126 lines
1.9 KiB
C
/*
|
|
* linux/lib/string.c
|
|
*
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
*/
|
|
|
|
#include "string.h"
|
|
|
|
size_t strnlen(const char *s, size_t count)
|
|
{
|
|
const char *sc;
|
|
|
|
for (sc = s; count-- && *sc != '\0'; ++sc)
|
|
/* nothing */;
|
|
return sc - s;
|
|
}
|
|
|
|
size_t strlen(const char *s)
|
|
{
|
|
const char *sc;
|
|
|
|
for (sc = s; *sc != '\0'; ++sc)
|
|
/* nothing */;
|
|
return sc - s;
|
|
}
|
|
|
|
char *strncpy(char *dst, const char *src, size_t n)
|
|
{
|
|
char *ret = dst;
|
|
|
|
while (n && (*dst++ = *src++))
|
|
n--;
|
|
|
|
while (n--)
|
|
*dst++ = 0;
|
|
|
|
return ret;
|
|
}
|
|
|
|
char *strcpy(char *dst, const char *src)
|
|
{
|
|
char *ret = dst;
|
|
|
|
while ((*dst++ = *src++))
|
|
;
|
|
|
|
return ret;
|
|
}
|
|
|
|
int strcmp(const char *p, const char *q)
|
|
{
|
|
for (;;) {
|
|
unsigned char a, b;
|
|
a = *p++;
|
|
b = *q++;
|
|
if (a == 0 || a != b)
|
|
return a - b;
|
|
}
|
|
}
|
|
|
|
int strncmp(const char *p, const char *q, size_t n)
|
|
{
|
|
while (n-- != 0) {
|
|
unsigned char a, b;
|
|
a = *p++;
|
|
b = *q++;
|
|
if (a == 0 || a != b)
|
|
return a - b;
|
|
}
|
|
return 0;
|
|
}
|
|
void *memset(void *dst, int x, size_t n)
|
|
{
|
|
unsigned char *p;
|
|
|
|
for (p = dst; n; n--)
|
|
*p++ = x;
|
|
|
|
return dst;
|
|
}
|
|
|
|
//
|
|
//void udelay(u32 d)
|
|
//{
|
|
// // should be good to max .2% error
|
|
// u32 ticks = d * 19 / 10;
|
|
//
|
|
// if(ticks < 2)
|
|
// ticks = 2;
|
|
//
|
|
// u32 now = *(vu32*)0x0D800010;
|
|
//
|
|
// u32 then = now + ticks;
|
|
//
|
|
// if(then < now) {
|
|
// while(*(vu32*)0x0D800010 >= now);
|
|
// now = *(vu32*)0x0D800010;
|
|
// }
|
|
//
|
|
// while(now < then) {
|
|
// now = *(vu32*)0x0D800010;
|
|
// }
|
|
//}
|
|
|
|
int memcmp(const void *s1, const void *s2, size_t n)
|
|
{
|
|
unsigned char *us1 = (unsigned char *) s1;
|
|
unsigned char *us2 = (unsigned char *) s2;
|
|
while (n-- != 0) {
|
|
if (*us1 != *us2)
|
|
return (*us1 < *us2) ? -1 : +1;
|
|
us1++;
|
|
us2++;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
char *strchr(const char *s, int c)
|
|
{
|
|
do {
|
|
if(*s == c)
|
|
return (char *)s;
|
|
} while(*s++ != 0);
|
|
return NULL;
|
|
}
|