cfenollosa_os-tutorial/21-shell/libc/string.h

12 lines
218 B
C
Raw Normal View History

2018-11-28 10:33:13 +00:00
#ifndef STRING_H
#define STRING_H
2015-03-20 18:20:44 +00:00
void int_to_ascii(int n, char str[]);
void reverse(char s[]);
int strlen(char s[]);
2015-03-23 15:08:34 +00:00
void backspace(char s[]);
2015-03-20 18:20:44 +00:00
void append(char s[], char n);
int strcmp(char s1[], char s2[]);
#endif