Commit 2871491b authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #347 from videlec/strings

add strings.pxd to Includes/libc
parents 23318496 1ececb78
cdef extern from "strings.h" nogil:
int bcmp(const void *, const void *, size_t)
void bcopy(const void *, void *, size_t)
void bzero(void *, size_t)
int ffs(int)
char *index(const char *, int)
char *rindex(const char *, int)
int strcasecmp(const char *, const char *)
int strncasecmp(const char *, const char *, size_t)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment