Wrapper for `vsscanf`
| 603 | |
| 604 | /// Wrapper for `vsscanf` |
| 605 | int 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` |
nothing calls this directly
no outgoing calls
no test coverage detected