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

12 lines
220 B
C
Raw Normal View History

2015-03-20 18:20:44 +00:00
#ifndef STRINGS_H
#define STRINGS_H
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