lesson 23, initial commit

This commit is contained in:
Carlos
2015-08-17 18:41:38 +02:00
parent d271f5bd6f
commit 0134c5625c
31 changed files with 1554 additions and 0 deletions

12
23-fixes/libc/string.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef STRINGS_H
#define STRINGS_H
void int_to_ascii(int n, char str[]);
void hex_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