From 88b153feb07d2c1616ab5f77f2ddd05350951ef0 Mon Sep 17 00:00:00 2001 From: Lars Buitinck Date: Wed, 24 Apr 2013 23:45:12 +0200 Subject: [PATCH] add strspn to string.pxd --- Cython/Includes/libc/string.pxd | 1 + 1 file changed, 1 insertion(+) 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) -- 2.7.4