xv6-cs450/ulib.c

57 lines
627 B
C
Raw Normal View History

#include "user.h"
2006-06-27 16:35:53 +02:00
int
puts(char *s)
{
return write(1, s, strlen(s));
2006-06-27 16:35:53 +02:00
}
2006-07-16 18:00:03 +02:00
char*
strcpy(char *s, char *t)
{
char *os;
os = s;
while((*s++ = *t++) != 0)
;
return os;
}
unsigned int
strlen(char *s)
{
int n = 0;
for(n = 0; s[n]; n++)
;
return n;
}
void *
memset(void *dst, int c, unsigned int n)
{
char *d = (char *) dst;
while(n-- > 0)
*d++ = c;
return dst;
}
char *
gets(char *buf, int max)
{
int i = 0, cc;
char c;
while(i+1 < max){
cc = read(0, &c, 1);
if(cc < 1)
break;
if(c == '\n' || c == '\r')
break;
buf[i++] = c;
}
buf[i] = '\0';
return buf;
}