cfenollosa_os-tutorial/21-shell/libc/string.h
2018-11-28 18:53:11 +08:00

12 lines
218 B
C

#ifndef STRING_H
#define STRING_H
void int_to_ascii(int n, char str[]);
void reverse(char s[]);
int strlen(char s[]);
void backspace(char s[]);
void append(char s[], char n);
int strcmp(char s1[], char s2[]);
#endif