Searched defs:pszStartsWith (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-objid.cpp344 RTDECL(bool) RTAsn1ObjId_StartsWith(PCRTASN1OBJID pThis, const char *pszStartsWith) argument
346 size_t cchStartsWith = strlen(pszStartsWith);
347 return !strncmp(pThis->szObjId, pszStartsWith, cchStartsWith)
348 && ( pszStartsWith[cchStartsWith] == '.'
349 || pszStartsWith[cchStartsWith] == '\0');

Completed in 43 milliseconds