Systems for MySQL
The world's most popular open source database
Contact a MySQL Representative
Login | Register
Learn about new MySQL releases, technical articles, events and more.
#include <my_global.h>
#include "m_string.h"
Include dependency graph for is_prefix.c:
Go to the source code of this file.
Definition at line 28 of file is_prefix.c.
00029 { 00030 while (*t) 00031 if (*s++ != *t++) return 0; 00032 return 1; /* WRONG */ 00033 }