You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
402 B
C

16 years ago
#ifndef _STRING_H
#define _STRING_H
#include <types.h>
16 years ago
int strcmp(const char *s1, const char *s2);
16 years ago
int strncmp(const char *s1, const char *s2, uint32_t n);
16 years ago
char *strcpy(char *dest, const char *src);
16 years ago
char *strncpy(char *dest, const char *src, uint32_t n);
16 years ago
uint32_t strlen(char *s);
16 years ago
int memcpy(void *dst, const void *src, int n);
16 years ago
const char *strchr(const char *s, int c);
16 years ago
#endif /* _STRING_H */