Searched refs:ncspn (Results 1 – 1 of 1) sorted by relevance
/external/epid-sdk/ext/argtable3/ |
D | argtable3.c | 4492 size_t ncspn; in arg_cat_option() local 4498 ncspn = strcspn(longopts, ","); in arg_cat_option() 4500 strncat_s(dest, ndest, longopts, (ncspn < ndest) ? ncspn : ndest); in arg_cat_option() 4502 strncat(dest, longopts, (ncspn < ndest) ? ncspn : ndest); in arg_cat_option() 4571 size_t ncspn; in arg_cat_optionv() local 4577 ncspn = strcspn(c, ","); in arg_cat_optionv() 4579 strncat_s(dest, ndest, c, (ncspn < ndest) ? ncspn : ndest); in arg_cat_optionv() 4581 strncat(dest, c, (ncspn < ndest) ? ncspn : ndest); in arg_cat_optionv() 4583 c += ncspn; in arg_cat_optionv()
|