brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.6 KiB · 1e78f0e Raw
88 lines · yaml
1header: strings.h2standards:3  - bsd4  - posix5types:6  - type_name: size_t7  - type_name: locale_t8functions:9  - name: bcmp10    standards:11      - bsd12    return_type: int13    arguments:14      - type: const void *15      - type: const void *16      - type: size_t17  - name: bcopy18    standards:19      - bsd20    return_type: void21    arguments:22      - type: const void *23      - type: void *24      - type: size_t25  - name: bzero26    standards:27      - bsd28    return_type: void29    arguments:30      - type: void *31      - type: size_t32  - name: ffs33    standards:34      - posix35    return_type: int36    arguments:37      - type: int38  - name: ffsl39    standards:40      - posix41    return_type: int42    arguments:43      - type: long44  - name: ffsll45    standards:46      - posix47    return_type: int48    arguments:49      - type: long long50  - name: index51    standards:52      - bsd53    return_type: char *54    arguments:55      - type: const char *56      - type: int57  - name: rindex58    standards:59      - bsd60    return_type: char *61    arguments:62      - type: const char *63      - type: int64  - name: strcasecmp65    return_type: int66    arguments:67      - type: const char *68      - type: const char *69  - name: strcasecmp_l70    return_type: int71    arguments:72      - type: const char *73      - type: const char *74      - type: locale_t75  - name: strncasecmp76    return_type: int77    arguments:78      - type: const char *79      - type: const char *80      - type: size_t81  - name: strncasecmp_l82    return_type: int83    arguments:84      - type: const char *85      - type: const char *86      - type: size_t87      - type: locale_t88