[libc][NFC] add outline of printf
authorMichael Jones <michaelrj@google.com>
Wed, 30 Mar 2022 22:54:30 +0000 (15:54 -0700)
committerMichael Jones <michaelrj@google.com>
Fri, 1 Apr 2022 21:36:17 +0000 (14:36 -0700)
commitc4a1b07d0979e7ff20d7d541af666d822d66b566
tree5d9d1be135c7ee1f3a631f78f92c4f2fa76be9cb
parent3bab268f95b3447dad34c9b408969e06dbc8a1b4
[libc][NFC] add outline of printf

This patch adds the headers for printf. It contains minimal actual code,
and is more intended to be used for design review. The code is not built
yet, and may have minor errors.

Reviewed By: sivachandra

Differential Revision: https://reviews.llvm.org/D122773
libc/src/stdio/printf_files/converter.h [new file with mode: 0644]
libc/src/stdio/printf_files/core_structs.h [new file with mode: 0644]
libc/src/stdio/printf_files/parser.h [new file with mode: 0644]
libc/src/stdio/printf_files/printf_main.h [new file with mode: 0644]
libc/src/stdio/printf_files/writer.h [new file with mode: 0644]