MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / StringAppendF

Function StringAppendF

Bcore/src/main/cpp/android-base/stringprintf.cpp:77–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77void StringAppendF(std::string* dst, const char* format, ...) {
78 va_list ap;
79 va_start(ap, format);
80 StringAppendV(dst, format, ap);
81 va_end(ap);
82}
83
84} // namespace base
85} // namespace android_lkchan

Callers 3

PrintableCharFunction · 0.85
PrintableStringFunction · 0.85
MangleForJniFunction · 0.85

Calls 1

StringAppendVFunction · 0.85

Tested by

no test coverage detected