Searched defs:start_of_y (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/mappers/
H A Dmod_imagemap.c252 const char *start_of_y = NULL; local
259 start_of_y = ap_strchr_c(args, ','); /* the comma */
261 if (start_of_y) {
263 start_of_y++; /* start looking at the character after
266 while (*start_of_y && !apr_isdigit(*start_of_y)) {
267 start_of_y++; /* jump to the first digit, but not
271 y_coord = strtod(start_of_y, &endptr);
273 if (endptr > start_of_y) {

Completed in 11 milliseconds