is_prefix.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /*  File   : is_prefix.c
  4.     Author : Michael Widenius
  5.     Defines: is_prefix()
  6.     is_prefix(s, t) returns 1 if s starts with t.
  7.     A empty t is allways a prefix.
  8. */
  9. #include <global.h>
  10. #include "m_string.h"
  11. int is_prefix(s, t)
  12. register const char *s;
  13. register const char *t;
  14. {
  15.   while (*t)
  16.     if (*s++ != *t++) return 0;
  17.   return 1; /* WRONG */
  18. }