Differences From Artifact [9adb71987b]:
- File src/cgi.c — part of check-in [6032dd51f2] at 2012-10-16 01:11:43 on branch trunk — unused variable includeDotFiles <p>struct utimbuf -> struct _utimbuf (compiler warning with mingw-w64) <p>a few "const" additions (lower memory footprint, allows C-compiler to optimize better) (user: jan.nijtmans size: 42991) [more...]
To Artifact [64ef4d8ed1]:
- File src/cgi.c — part of check-in [45065c5c28] at 2012-11-04 12:59:14 on branch spelling — Fix typos. (user: dmitry size: 42991) [more...]
| ︙ | |||
963 964 965 966 967 968 969 | 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 | - + |
for(i=0; zOut[i]; i++){}
while( i>0 && fossil_isspace(zOut[i-1]) ) zOut[--i] = 0;
return zOut;
}
/*
** Return the name of the i-th CGI parameter. Return NULL if there
|
| ︙ |