diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-18 19:40:11 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-18 19:40:11 +0200 |
commit | ac10c1a29c44b0cb29960cd0f792c7361bc430ce (patch) | |
tree | 33466e227a0214d40de373b72c83a750dba29195 /src/user/lib/include/stdio.h | |
parent | 478c691187fbc9ba4ccaacf92f57828eef20041c (diff) | |
download | TCE-ac10c1a29c44b0cb29960cd0f792c7361bc430ce.tar.gz TCE-ac10c1a29c44b0cb29960cd0f792c7361bc430ce.zip |
Added some stuff.
Diffstat (limited to 'src/user/lib/include/stdio.h')
-rw-r--r-- | src/user/lib/include/stdio.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/user/lib/include/stdio.h b/src/user/lib/include/stdio.h index 91fe169..6c3a974 100644 --- a/src/user/lib/include/stdio.h +++ b/src/user/lib/include/stdio.h @@ -3,11 +3,19 @@ #include <stdarg.h> +extern FILE term; + +void print(char *s); +void printf(char *s, ...); +char *readln(); + void fprint(FILE f, char *s); void fprint_int(FILE f, int number); void fprint_hex(FILE f, unsigned number); void fprintf(FILE f, char *s, ...); +void vsfprintf(FILE f, char *s, va_list arg); + char* freadln(FILE f); #endif |