MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / ply_find_string

Function ply_find_string

src/IO/rply.c:886–892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

884}
885
886static int ply_find_string(const char *item, const char* const list[]) {
887 int i;
888 assert(item && list);
889 for (i = 0; list[i]; i++)
890 if (!strcmp(list[i], item)) return i;
891 return -1;
892}
893
894static p_ply_element ply_find_element(p_ply ply, const char *name) {
895 p_ply_element element;

Callers 2

ply_read_header_formatFunction · 0.85
ply_read_header_propertyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected