Lines Matching defs:semi
107 const char *semi;
111 semi = ap_strchr_c(intype, ';');
112 if (semi == NULL) {
116 while ((semi > intype) && apr_isspace(semi[-1])) {
117 semi--;
119 return apr_pstrmemdup(p, intype, semi - intype);
2338 char *semi;
2340 semi = strchr(str, ';');
2341 if (semi) {
2342 *semi = '\0';
2347 if (semi) {
2348 *semi = ';';