MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / appendf

Method appendf

Control/TMSITable.cpp:333–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

331struct TSqlString : public string {
332 char buf[100];
333 void appendf(const char *fmt,int val) { snprintf(buf,100,fmt,val); append(buf); }
334 void appendf(const char *fmt,const char *val) { snprintf(buf,100,fmt,val); append(buf); }
335 void appendf(const char *fmt,string val) { snprintf(buf,100,fmt,val.c_str()); append(buf); }
336 void appendf(const char *fmt,const char *a,string b) { snprintf(buf,100,fmt,a,b.c_str()); append(buf); }

Callers 3

addcMethod · 0.80
addcMethod · 0.80
tmsiTabUpdateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected