~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/strstr.c

  • Committer: Brian Aker
  • Date: 2008-07-14 22:40:46 UTC
  • Revision ID: brian@tangent.org-20080714224046-x183907w9wp1txwv
Removed sql_manager. Ever heard of just setting up the OS to sync when you
want it to?

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    strstr(src, pat) looks for an instance of pat in src.  pat is not a
24
24
    regex(3) pattern, it is a literal string which must be matched exactly.
25
25
    The result is a pointer to the first character of the located instance,
26
 
    or NULL if pat does not occur in src.
 
26
    or NullS if pat does not occur in src.
27
27
 
28
28
*/
29
29
 
 
30
#include <my_global.h>
30
31
#include "m_string.h"
31
32
 
32
33
#ifndef HAVE_STRSTR