~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/strcont.c

  • Committer: Monty Taylor
  • Date: 2008-08-02 01:03:15 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080802010315-65h5938pymg9d99z
Moved m4 macros to top-level m4 dir, per GNU standards (and where gettext wanted it :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
*/
26
26
 
27
 
#include <my_global.h>
28
27
#include "m_string.h"
29
28
 
30
29
char * strcont(register const char *str, register const char *set)
40
39
    }
41
40
    set=start; str++;
42
41
  }
43
 
  return (NullS);
 
42
  return ((char *)0);
44
43
} /* strcont */