Home | History | Annotate | Download | only in sail

Lines Matching refs:temp

55 		char *command, size_t commandmax, char *temp, size_t tempmax,
167 char temp[10];
169 temp[0] = command[0] = '\0';
171 try(from, to, command, commandmax, temp, sizeof(temp),
251 char *temp, size_t tempmax,
258 if ((n = str_end(temp)) < '1' || n > '9')
261 strlcat(temp, st, tempmax);
262 new = score(f, t, temp, tempmax, rakeme);
265 strlcpy(command, temp, commandmax);
267 try(f, t, command, commandmax, temp, tempmax,
270 rmend(temp);
272 if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') ||
273 !strlen(temp)) {
274 strlcat(temp, "r", tempmax);
275 new = score(f, t, temp, tempmax, rakeme);
279 strlcpy(command, temp, commandmax);
281 try(f, t, command, commandmax, temp, tempmax,
285 rmend(temp);
287 if ((ma > 0 && ta > 0 && (n = str_end(temp)) != 'l' && n != 'r') ||
288 !strlen(temp)) {
289 strlcat(temp, "l", tempmax);
290 new = score(f, t, temp, tempmax, rakeme);
294 strlcpy(command, temp, commandmax);
296 try(f, t, command, commandmax, temp, tempmax,
300 rmend(temp);