摘要: #ifndef __HAVE_ARCH_STRSPN/** * strspn - Calculate the length of the initial substring of @s which only contain letters in @accept * @s: The string to be searched * @accept: The string to search for */ size_t strspn(const char *s, const char *accept) { const char *p; const char *a; size_... 阅读全文
posted @ 2013-11-20 15:21 leegooy 阅读(288) 评论(0) 推荐(0) 编辑