~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/strstr.c

  • Committer: Monty Taylor
  • Date: 2008-07-01 14:33:36 UTC
  • mto: (28.1.12 backport_patch)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: monty@inaugust.com-20080701143336-8uihm7dhpu92rt0q
Somehow missed moving password.c. Duh.

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