Searched defs:s2 (Results 1 - 3 of 3) sorted by relevance
/httpd/server/ |
H A D | util_expr_eval.c | 109 const char *s2 = ap_expr_eval_word(ctx, node->node_arg2); local 111 result = s2; 112 else if (!*s2) 115 result = apr_pstrcat(ctx->p, s1, s2, NULL); 239 static int intstrcmp(const char *s1, const char *s2) argument 242 apr_int64_t i2 = apr_atoi64(s2); 588 #define DUMP_S_S(op, s1, s2) \ 589 ap_log_error(MARK,"%*s%s: '%s' '%s'", indent, " ", op, (char *)s1, (char *)s2)
|
H A D | util_expr_scan.c | 2636 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) argument 2640 s1[i] = s2[i];
|
H A D | util.c | 305 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2) argument 308 if (*s2 == '\0') { 309 /* an empty s2 */ 313 for ( ; (*s1 != '\0') && (apr_tolower(*s1) != apr_tolower(*s2)); s1++); 317 /* found first character of s2, see if the rest matches */ 319 p2 = (char *)s2;
|
Completed in 30 milliseconds