xv6-cs450/ulib.c

91 lines
1.1 KiB
C
Raw Normal View History

2006-08-14 05:00:13 +02:00
#include "types.h"
#include "stat.h"
#include "fcntl.h"
#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;
2006-09-06 19:27:19 +02:00
os = s;
while((*s++ = *t++) != 0)
;
return os;
2006-07-16 18:00:03 +02:00
}
int
strcmp(const char *p, const char *q)
{
2006-09-06 19:27:19 +02:00
while(*p && *p == *q)
p++, q++;
return (int) ((unsigned char) *p - (unsigned char) *q);
}
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)
{
2006-09-06 19:27:19 +02:00
char *d = (char*) dst;
while(n-- > 0)
*d++ = c;
return dst;
}
char*
strchr(const char *s, char c)
{
2006-09-06 19:27:19 +02:00
for(; *s; s++)
if(*s == c)
return (char*) s;
return 0;
}
char*
gets(char *buf, int max)
{
int i = 0, cc;
char c;
2006-09-06 19:27:19 +02:00
while(i+1 < max){
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
break;
}
buf[i] = '\0';
return buf;
}
2006-08-14 05:00:13 +02:00
int
stat(char *n, struct stat *st)
{
int fd;
2006-08-14 05:00:13 +02:00
int r;
fd = open(n, O_RDONLY);
2006-09-06 19:57:47 +02:00
if(fd < 0)
return -1;
2006-08-14 05:00:13 +02:00
r = fstat(fd, st);
close(fd);
return r;
}