// // __strncnt from 0x1801411b0 to 0x1801411c5 (21 bytes) // // 3 xrefs: // > InternalCompareStringA @ 0x18013bb28 // > InternalCompareStringA @ 0x18013bb4c // > __acrt_LCMapStringA_stat @ 0x180140c5c // // This function is hookable on this platform! // // Using BromaIDA 8.0.0 @ https://github.com/Stazzical/BromaIDA // Using bindings at commit ba9f177b at Thu Jul 16 22:52:06 2026 from https://github.com/geode-sdk/bindings // size_t __cdecl _strncnt(const char *String, size_t Count) { size_t result; // rax result = 0; if ( *String ) { do { if ( result == Count ) break; ++result; } while ( String[result] ); } return result; }