blob: 7d0bf2005c8ddbf9b6df8b14b6e9856b344ffcbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _DEF_STRING_H
#define _DEF_STRING_H
// #include <stdlib.h>
#include <types.h>
int strlen(const char *str);
char *strcpy(char *dest, const char *src);
char *strchr(const char *str, char c);
char *strcat(char *dest, const char *src);
int strcmp(const char *s1, const char *s2);
#endif
|