MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / _contains_semicolon

Function _contains_semicolon

src/database/cppsqlite3.cpp:1326–1330  ·  view source on GitHub ↗

** Return TRUE if a semicolon occurs anywhere in the first N characters ** of string z[]. */

Source from the content-addressed store, hash-verified

1324** of string z[].
1325*/
1326static int _contains_semicolon(const char *z, int N){
1327 int i;
1328 for(i=0; i<N; i++){ if( z[i]==';' ) return 1; }
1329 return 0;
1330}
1331
1332
1333

Callers 1

process_inputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected