This is useless now

This commit is contained in:
Rafal Kupiec 2018-07-27 21:19:59 +02:00
parent db93fd8b25
commit a6a43b5f3b
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 0 additions and 7 deletions

View File

@ -325,13 +325,6 @@ sxu32 Systrcpy(char *zDest, sxu32 nDestLen, const char *zSrc, sxu32 nLen) {
zBuf[0] = 0;
return (sxu32)(zBuf - (unsigned char *)zDest);
}
sxi32 SyStrncpy(char *zDest, const char *zSrc, sxu32 nLen) {
sxu32 i = 0;
while(i++ != nLen && (*zDest++ = *zSrc++));
*zDest = '\0';
return SXRET_OK;
}
sxi32 SyAsciiToHex(sxi32 c) {
if(c >= 'a' && c <= 'f') {
c += 10 - 'a';