HomeSort by relevance Sort by last modified time
    Searched full:bcm_ismask (Results 1 - 1 of 1) sorted by null

  /hardware/broadcom/wlan/bcm4329/src/include/
bcmutils.h 45 #define bcm_ismask(x) (bcm_ctype[(int)(unsigned char)(x)]) macro
47 #define bcm_isalnum(c) ((bcm_ismask(c)&(_BCM_U|_BCM_L|_BCM_D)) != 0)
48 #define bcm_isalpha(c) ((bcm_ismask(c)&(_BCM_U|_BCM_L)) != 0)
49 #define bcm_iscntrl(c) ((bcm_ismask(c)&(_BCM_C)) != 0)
50 #define bcm_isdigit(c) ((bcm_ismask(c)&(_BCM_D)) != 0)
51 #define bcm_isgraph(c) ((bcm_ismask(c)&(_BCM_P|_BCM_U|_BCM_L|_BCM_D)) != 0)
52 #define bcm_islower(c) ((bcm_ismask(c)&(_BCM_L)) != 0)
53 #define bcm_isprint(c) ((bcm_ismask(c)&(_BCM_P|_BCM_U|_BCM_L|_BCM_D|_BCM_SP)) != 0)
54 #define bcm_ispunct(c) ((bcm_ismask(c)&(_BCM_P)) != 0)
55 #define bcm_isspace(c) ((bcm_ismask(c)&(_BCM_S)) != 0
    [all...]

Completed in 32 milliseconds