xv6-cs450/string.c

60 lines
849 B
C
Raw Normal View History

2006-06-15 18:02:20 +02:00
#include "types.h"
#include "defs.h"
2006-06-12 17:22:12 +02:00
void *
memset(void *dst, int c, uint n)
2006-06-12 17:22:12 +02:00
{
char *d = (char *) dst;
while(n-- > 0)
*d++ = c;
return dst;
}
2006-06-21 03:53:07 +02:00
int
memcmp(const void *v1, const void *v2, uint n)
2006-06-21 03:53:07 +02:00
{
2006-07-20 11:07:53 +02:00
const uchar *s1 = (const uchar *) v1;
const uchar *s2 = (const uchar *) v2;
2006-06-21 03:53:07 +02:00
while (n-- > 0) {
if (*s1 != *s2)
return (int) *s1 - (int) *s2;
s1++, s2++;
}
return 0;
}
void *
memmove(void *dst, const void *src, uint n)
{
const char *s;
char *d;
s = src;
d = dst;
if (s < d && s + n > d) {
s += n;
d += n;
while (n-- > 0)
*--d = *--s;
} else
while (n-- > 0)
*d++ = *s++;
return dst;
}
int
strncmp(const char *p, const char *q, uint n)
{
while (n > 0 && *p && *p == *q)
n--, p++, q++;
if (n == 0)
return 0;
else
return (int) ((uchar) *p - (uchar) *q);
}