Add files via upload

This commit is contained in:
vxunderground 2021-05-28 01:12:22 -05:00 committed by GitHub
parent 65c3e553c1
commit 287e70df07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,8 @@
SIZE_T StringLengthA(LPCSTR String)
{
LPCSTR String2;
for (String2 = String; *String2; ++String2);
return (String2 - String);
}