[libc-commits] [libc] 08df6c7 - [libc][docs] update list of completed stdio funcs
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Thu Mar 9 10:45:01 PST 2023
Author: Michael Jones
Date: 2023-03-09T10:44:50-08:00
New Revision: 08df6c78b57cf0ea62a2427e75c58aa082e56a5a
URL: https://github.com/llvm/llvm-project/commit/08df6c78b57cf0ea62a2427e75c58aa082e56a5a
DIFF: https://github.com/llvm/llvm-project/commit/08df6c78b57cf0ea62a2427e75c58aa082e56a5a.diff
LOG: [libc][docs] update list of completed stdio funcs
Reviewed By: lntue
Differential Revision: https://reviews.llvm.org/D145633
Added:
Modified:
libc/docs/stdio.rst
Removed:
################################################################################
diff --git a/libc/docs/stdio.rst b/libc/docs/stdio.rst
index b0ffd67d6951..fdb796513d8f 100644
--- a/libc/docs/stdio.rst
+++ b/libc/docs/stdio.rst
@@ -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|
============= =========
More information about the libc-commits
mailing list