[libc-commits] [PATCH] D157138: [libc] Add v variants of printf functions

Petr Hosek via Phabricator via libc-commits libc-commits at lists.llvm.org
Fri Aug 4 14:13:50 PDT 2023


phosek accepted this revision.
phosek added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libc/test/src/stdio/vsprintf_test.cpp:26-28
+#define ASSERT_STREQ_LEN(actual_written, actual_str, expected_str)             \
+  EXPECT_EQ(actual_written, static_cast<int>(sizeof(expected_str) - 1));       \
+  EXPECT_STREQ(actual_str, expected_str);
----------------
This doesn't seem to be used anywhere.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D157138/new/

https://reviews.llvm.org/D157138



More information about the libc-commits mailing list