summaryrefslogtreecommitdiff
path: root/libc/src/stdio/vsscanf.cpp
AgeCommit message (Collapse)Author
2025-03-17[libc] Templatize the scanf Reader interface (#131037)Petr Hosek
This allows specializing the implementation for different targets without including unnecessary logic and is similar to #111559 which did the same for printf Writer interface.
2024-10-01[libc][stdio] Use proxy headers of stdio.h in src and test folders. (#110067)lntue
https://github.com/llvm/llvm-project/issues/60481
2024-07-31[libc] Add vsscanf function (#101402)Joseph Huber
Summary: Adds support for the `vsscanf` function similar to `sscanf`. Based off of https://github.com/llvm/llvm-project/pull/97529.