Files
hfiref0x-UACME/Source/Shared/_strend.c
T
hfiref0x fc57720a18 v 1.5.0
Hybrid Simda/Carberp with AppVerif added.
2015-04-05 23:28:52 +07:00

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;
}