From: Lars Buitinck Date: Wed, 24 Apr 2013 21:45:12 +0000 (+0200) Subject: add strspn to string.pxd X-Git-Tag: 0.19.1~41^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88b153feb07d2c1616ab5f77f2ddd05350951ef0;p=platform%2Fupstream%2Fpython-cython.git add strspn to string.pxd --- diff --git a/Cython/Includes/libc/string.pxd b/Cython/Includes/libc/string.pxd index c01d95f..fcff242 100644 --- a/Cython/Includes/libc/string.pxd +++ b/Cython/Includes/libc/string.pxd @@ -43,6 +43,7 @@ cdef extern from "string.h" nogil: char *strcasestr (const char *haystack, const char *needle) size_t strcspn (const char *string, const char *stopset) + size_t strspn (const char *string, const char *set) char * strpbrk (const char *string, const char *stopset) char *strtok (char *newstring, const char *delimiters)