Commit 1ececb78 authored by Vincent Delecroix's avatar Vincent Delecroix

move strings.pxd to posix + remove semicolon

parent 753a9a50
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);
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