MCPcopy Create free account
hub / github.com/OpenBoardView/OpenBoardView / nextfield

Function nextfield

src/openboardview/FileFormats/BVRFile.cpp:10–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8#include <cstring>
9
10char *nextfield(char *p) {
11 if (p) {
12 while ((*p != '\t') && (*p != '\0') && (*p != '\r') && (*p != '\n')) {
13 p++;
14 }
15 }
16 if (*p == '\t') p++;
17 return p;
18}
19
20bool BVRFile::verifyFormat(std::vector<char> &buf) {
21 return find_str_in_buf("BVRAW_FORMAT_1", buf);

Callers 1

BVRFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected