MCPcopy Create free account
hub / github.com/JACoders/OpenJK / Field_FindFirstSeparator

Function Field_FindFirstSeparator

code/qcommon/common.cpp:1721–1728  ·  view source on GitHub ↗

=============== Field_FindFirstSeparator =============== */

Source from the content-addressed store, hash-verified

1719===============
1720*/
1721static char *Field_FindFirstSeparator( char *s ) {
1722 for ( size_t i=0; i<strlen( s ); i++ ) {
1723 if ( s[i] == ';' )
1724 return &s[ i ];
1725 }
1726
1727 return NULL;
1728}
1729
1730/*
1731===============

Callers 1

Field_CompleteCommandFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected