cfenollosa_os-tutorial/22-malloc/libc/string.h

14 lines
283 B
C
Raw Normal View History

2015-05-18 07:39:41 +00:00
#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[]);
2022-12-04 14:57:22 +00:00
char chrupper(char chr);
2015-05-18 07:39:41 +00:00
#endif