zoukankan      html  css  js  c++  java
  • strspn strcspn

    #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_t count = 0;
         
         for (p = s; *p != ''; ++p) {
             for (a = accept; *a != ''; ++a) {
                 if (*p == *a)
                     break;
             }
             if (*a == '')
                 return count;
             ++count;
         }
         return count;
    
         
         EXPORT_SYMBOL(strspn);
    #endif

    strcspn

    #ifndef __HAVE_ARCH_STRCSPN
    /**
     * strcspn - Calculate the length of the initial substring of @s which does not contain letters in @reject
     * @s: The string to be searched
     * @reject: The string to avoid
     */
     size_t strcspn(const char *s, const char *reject)
     {
         const char *p;
         const char *r;
         size_t count = 0;
    
         for (p = s; *p != ''; ++p) {
             for (r = reject; *r != ''; ++r) {
                 if (*p == *r)
                     return count;
             }
             ++count;
         }
         return count;
     }
     EXPORT_SYMBOL(strcspn);
    #endif
  • 相关阅读:
    呵呵
    geoserver中WMS服务详细说明
    Linux的用户和用户组管理
    linux ftp配置
    linux下vi命令大全
    linux基本命令大全
    Python ConfigParser
    java 小程序分析:参数传递
    java final
    java静态初始化块(静态域)
  • 原文地址:https://www.cnblogs.com/leegoo/p/3433672.html
Copyright © 2011-2022 走看看