lesson 21, keyboard input and shell

This commit is contained in:
Carlos
2015-03-20 19:20:44 +01:00
parent 5aaabf189d
commit e9d0d6c388
25 changed files with 1217 additions and 3 deletions

10
21-shell/libc/string.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef STRINGS_H
#define STRINGS_H
void int_to_ascii(int n, char str[]);
void reverse(char s[]);
int strlen(char s[]);
void append(char s[], char n);
int strcmp(char s1[], char s2[]);
#endif