mirror of
https://github.com/hfiref0x/UACME
synced 2026-06-08 14:39:53 +00:00
fc57720a18
Hybrid Simda/Carberp with AppVerif added.
24 lines
243 B
C
24 lines
243 B
C
#include "rtltypes.h"
|
|
|
|
char *_strend_a(const char *s)
|
|
{
|
|
if ( s==0 )
|
|
return 0;
|
|
|
|
while ( *s!=0 )
|
|
s++;
|
|
|
|
return (char *)s;
|
|
}
|
|
|
|
wchar_t *_strend_w(const wchar_t *s)
|
|
{
|
|
if ( s==0 )
|
|
return 0;
|
|
|
|
while ( *s!=0 )
|
|
s++;
|
|
|
|
return (wchar_t *)s;
|
|
}
|