mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2025-12-17 04:14:37 +03:00
lesson 21, keyboard input and shell
This commit is contained in:
10
21-shell/libc/string.h
Normal file
10
21-shell/libc/string.h
Normal 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
|
||||
Reference in New Issue
Block a user