MCPcopy Create free account
hub / github.com/LASzip/LASzip / sscanf_las

Function sscanf_las

src/mydefs.cpp:605–613  ·  view source on GitHub ↗

Wrapper for `vsscanf`

Source from the content-addressed store, hash-verified

603
604/// Wrapper for `vsscanf`
605int sscanf_las(const char* buffer, const char* format, ...) {
606 va_list args;
607 va_start(args, format);
608
609 int result = vsscanf(buffer, format, args);
610
611 va_end(args);
612 return result;
613}
614
615/// <summary>
616/// secure wrapper for `strncpy`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected