2006-06-15 18:02:20 +02:00
|
|
|
#include "types.h"
|
|
|
|
#include "defs.h"
|
|
|
|
|
2006-09-06 19:27:19 +02:00
|
|
|
void*
|
2006-07-17 03:52:13 +02:00
|
|
|
memset(void *dst, int c, uint n)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2006-09-06 19:27:19 +02:00
|
|
|
char *d = (char*) dst;
|
2006-06-12 17:22:12 +02:00
|
|
|
|
|
|
|
while(n-- > 0)
|
|
|
|
*d++ = c;
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
}
|
2006-06-21 03:53:07 +02:00
|
|
|
|
|
|
|
int
|
2006-07-17 03:52:13 +02:00
|
|
|
memcmp(const void *v1, const void *v2, uint n)
|
2006-06-21 03:53:07 +02:00
|
|
|
{
|
2006-09-06 19:27:19 +02:00
|
|
|
const uchar *s1 = (const uchar*) v1;
|
|
|
|
const uchar *s2 = (const uchar*) v2;
|
2006-06-21 03:53:07 +02:00
|
|
|
|
2006-09-06 19:27:19 +02:00
|
|
|
while(n-- > 0) {
|
|
|
|
if(*s1 != *s2)
|
2006-06-21 03:53:07 +02:00
|
|
|
return (int) *s1 - (int) *s2;
|
|
|
|
s1++, s2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-06-22 03:28:57 +02:00
|
|
|
|
2006-09-06 19:27:19 +02:00
|
|
|
void*
|
2006-07-17 03:52:13 +02:00
|
|
|
memmove(void *dst, const void *src, uint n)
|
2006-06-22 03:28:57 +02:00
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
2006-09-06 19:04:06 +02:00
|
|
|
|
2006-06-22 03:28:57 +02:00
|
|
|
s = src;
|
|
|
|
d = dst;
|
2006-09-06 19:27:19 +02:00
|
|
|
if(s < d && s + n > d) {
|
2006-06-22 03:28:57 +02:00
|
|
|
s += n;
|
|
|
|
d += n;
|
2006-09-06 19:27:19 +02:00
|
|
|
while(n-- > 0)
|
2006-06-22 03:28:57 +02:00
|
|
|
*--d = *--s;
|
|
|
|
} else
|
2006-09-06 19:27:19 +02:00
|
|
|
while(n-- > 0)
|
2006-06-22 03:28:57 +02:00
|
|
|
*d++ = *s++;
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
}
|
2006-07-05 22:00:14 +02:00
|
|
|
|
|
|
|
int
|
2006-07-17 03:52:13 +02:00
|
|
|
strncmp(const char *p, const char *q, uint n)
|
2006-07-05 22:00:14 +02:00
|
|
|
{
|
2006-09-06 19:27:19 +02:00
|
|
|
while(n > 0 && *p && *p == *q)
|
2006-09-06 19:04:06 +02:00
|
|
|
n--, p++, q++;
|
2006-09-06 19:27:19 +02:00
|
|
|
if(n == 0)
|
2006-09-06 19:04:06 +02:00
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return (int) ((uchar) *p - (uchar) *q);
|
2006-07-05 22:00:14 +02:00
|
|
|
}
|
2007-08-08 10:37:22 +02:00
|
|
|
|
|
|
|
// Like strncpy but guaranteed to NUL-terminate.
|
|
|
|
char*
|
|
|
|
safestrcpy(char *s, const char *t, int n)
|
|
|
|
{
|
|
|
|
char *os;
|
|
|
|
|
|
|
|
os = s;
|
|
|
|
if(n <= 0)
|
|
|
|
return os;
|
|
|
|
while(--n > 0 && (*s++ = *t++) != 0)
|
|
|
|
;
|
|
|
|
*s = 0;
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|