stripfx.c
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:0k
源码类别:
操作系统开发
开发平台:
Visual C++
- #include <stdlib.h>
- #include <string.h>
- #include "strpfx.h"
- // Determine if a string is a prefix
- // - case insensitive variant
- char*
- striprefix (
- char* szTest,
- char* szFull )
- {
- int cch = strlen ( szTest );
- // if no match, return NULL
- if ( strnicmp ( szTest, szFull, cch ))
- return NULL;
- // success. return where prefix failed
- return szFull + cch;
- }