Searched refs:isquoted (Results 1 – 1 of 1) sorted by relevance
95 int isquoted, numargs = 0, argnum; in apr_tokenize_to_argv() local102 #define CHECK_QUOTATION(cp,isquoted) \ in apr_tokenize_to_argv() argument103 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() argument124 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 …]