[libc][docs] update list of completed stdio funcs
authorMichael Jones <michaelrj@google.com>
Thu, 9 Mar 2023 00:39:45 +0000 (16:39 -0800)
committerMichael Jones <michaelrj@google.com>
Thu, 9 Mar 2023 18:44:50 +0000 (10:44 -0800)
Reviewed By: lntue

Differential Revision: https://reviews.llvm.org/D145633

libc/docs/stdio.rst

index b0ffd67..fdb7965 100644 (file)
@@ -23,10 +23,10 @@ convert either to or from those arguments. These functions are the current focus
 (owner: michaelrj).
 
 =============  =========
-Function_Name  Available
+Function Name  Available
 =============  =========
-\*printf       WIP
-\*scanf
+\*printf       Mostly
+\*scanf        |check|
 =============  =========
 
 ``FILE`` Access
@@ -37,15 +37,15 @@ I/O stream, often used to represent a file on the host's hard drive. Currently
 the ``FILE`` object is only available on linux.
 
 =============  =========
-Function_Name  Available
+Function Name  Available
 =============  =========
 fopen          |check|
 freopen
 fclose         |check|
 fflush         |check|
-setbuf
-setvbuf
-ftell
+setbuf         |check|
+setvbuf        |check|
+ftell          |check|
 fgetpos
 fseek          |check|
 fsetpos
@@ -79,15 +79,15 @@ The ``gets`` function was removed in C11 for having no bounds checking and
 therefor being impossible to use safely.
 
 =============  =========
-Function_Name  Available
+Function Name  Available
 =============  =========
-(f)getc
-fgets
+(f)getc        |check|
+fgets          |check|
 getchar
 fread          |check|
-(f)putc
+(f)putc        |check|
 (f)puts        |check|
-putchar
+putchar        |check|
 fwrite         |check|
-ungetc
+ungetc         |check|
 =============  =========