Lines Matching defs:from
15 * derived from this software without specific prior written permission
67 /* Remove the last amount characters from the sbuf */
72 typedef char *edited_copy(char *from, char *to, int length);
242 * Strip any of a set of chars from the end of the sbuf.
368 * Remove trailing spaces from a string, returning a pointer to just
430 de_nroff_copy(char *from, char *to, int fromlen)
432 char *from_end = &from[fromlen];
434 while (from < from_end) {
435 switch (*from) {
437 switch (*++from) {
439 if (strncmp(&from[1], "em", 2) == 0 ||
440 strncmp(&from[1], "mi", 2) == 0) {
441 from += 3;
446 if (*++from == '-')
447 from++;
448 while (isdigit(*from))
449 from++;
453 if (*++from == '(') {
454 from += 3;
455 } else if (*from == '[') {
456 while (*++from != ']' &&
457 from < from_end)
459 from++;
461 from++;
465 from++;
470 *to++ = *from++;
599 * Collect a list of comma-separated names from the text.