11 - The main source for string functions is located at:
12 ``libc/src/stdio`` with subdirectories for internal implementations.
18 Formatted Input/Output Functions
19 ================================
21 These functions take in format strings and arguments of various types and
22 convert either to or from those arguments. These functions are the current focus
25 ============= =========
26 Function Name Available
27 ============= =========
30 ============= =========
35 These functions are used to interact with the ``FILE`` object type, which is an
36 I/O stream, often used to represent a file on the host's hard drive. Currently
37 the ``FILE`` object is only available on linux.
39 ============= =========
40 Function Name Available
41 ============= =========
59 ============= =========
61 Operations on system files
62 ==========================
64 These functions operate on files on the host's system, without using the
65 ``FILE`` object type. They only take the name of the file being operated on.
67 ============= =========
68 Function_Name Available
69 ============= =========
73 ============= =========
75 Unformatted ``FILE`` Input/Output Functions
76 ===========================================
78 The ``gets`` function was removed in C11 for having no bounds checking and
79 therefor being impossible to use safely.
81 ============= =========
82 Function Name Available
83 ============= =========
93 ============= =========