mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
internal c lib
This commit is contained in:
parent
f1627cd86c
commit
bffc16115d
1 changed files with 1 additions and 2 deletions
|
@ -38,9 +38,8 @@ IntCompareMemory(_In_ PVOID Source1, _In_ PVOID Source2, _In_ SIZE_T Length)
|
||||||
PCHAR
|
PCHAR
|
||||||
IntFindSubstring(_In_ PCHAR String1, _In_ PCHAR String2)
|
IntFindSubstring(_In_ PCHAR String1, _In_ PCHAR String2)
|
||||||
{
|
{
|
||||||
if (*String2 == '\0') {
|
if (*String2 == '\0')
|
||||||
return String1;
|
return String1;
|
||||||
}
|
|
||||||
|
|
||||||
for (PCHAR s1 = String1; *s1 != '\0'; s1++) {
|
for (PCHAR s1 = String1; *s1 != '\0'; s1++) {
|
||||||
PCHAR p1 = s1;
|
PCHAR p1 = s1;
|
||||||
|
|
Loading…
Reference in a new issue