stripfx.c
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:0k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. #include <stdlib.h>
  2. #include <string.h>
  3. #include "strpfx.h"
  4. // Determine if a string is a prefix
  5. // - case insensitive variant
  6. char*
  7. striprefix (
  8.     char* szTest,
  9.     char* szFull )
  10. {
  11.     int cch = strlen ( szTest );
  12.     // if no match, return NULL
  13.     if ( strnicmp ( szTest, szFull, cch ))
  14. return NULL;
  15.     // success.  return where prefix failed
  16.     return szFull + cch;
  17.     }