Home
last modified time | relevance | path

Searched refs:isquoted (Results 1 – 1 of 1) sorted by relevance

/trueos/contrib/apr/strings/
HDapr_cpystrn.c95 int isquoted, numargs = 0, argnum; in apr_tokenize_to_argv() local
102 #define CHECK_QUOTATION(cp,isquoted) \ in apr_tokenize_to_argv() argument
103 isquoted = 0; \ in apr_tokenize_to_argv()
105 isquoted = 1; \ in apr_tokenize_to_argv()
109 isquoted = 2; \ in apr_tokenize_to_argv()
117 #define DETERMINE_NEXTSTRING(cp,isquoted) \ in apr_tokenize_to_argv() argument
124 if ( (!isquoted && (*cp == ' ' || *cp == '\t')) \ in apr_tokenize_to_argv()
125 || (isquoted == 1 && *cp == '"') \ in apr_tokenize_to_argv()
126 || (isquoted == 2 && *cp == '\'') ) { \ in apr_tokenize_to_argv()
161 CHECK_QUOTATION(ct, isquoted); in apr_tokenize_to_argv()
[all …]