comparison src/input.cc @ 1125:cc033b3d4be4

[project @ 1995-02-22 00:40:40 by jwe]
author jwe
date Wed, 22 Feb 1995 00:40:40 +0000
parents 971f2289d6de
children b6360f2d4fa6
comparison
equal deleted inserted replaced
1124:37a48680f050 1125:cc033b3d4be4
758 758
759 char *tp = tmp; 759 char *tp = tmp;
760 while (*tp == ' ' || *tp == '\t') 760 while (*tp == ' ' || *tp == '\t')
761 tp++; 761 tp++;
762 762
763 char *ep = test + strlen (test) - 1; 763 char *ep = tmp + strlen (tmp) - 1;
764 while (*ep == ' ' || *ep == '\t') 764 while (*ep == ' ' || *ep == '\t')
765 ep--; 765 ep--;
766 766
767 *(ep+1) = '\0'; 767 *(ep+1) = '\0';
768 768