home *** CD-ROM | disk | FTP | other *** search
- /* Program 3_7b - Search STDIN for a given string
- by Stephen R. Davis, 1987
-
- search the input stream (STDIN) for a given character string.
- Output whatever is input with lines containing the string
- marked. Accept optional arguments controlling details of the
- search:
- /i - ignore case (this has the side effect of outputting
- everything in lower case also)
- /t - only print totals
- /l - print the matching lines only
- */
- #include <stdio.h>
- #include <ctype.h>
- #include <process.h>
- #define FALSE 0
- #define TRUE 1
-
- /*prototype definitions -*/
- int main (int, char **);
- int find (char *, char *);
- void forcelow (char *);
-
- /*Main - scan the input stream for the appearance of the first
- argument considering the switches noted above*/
- main (argc, argv)
- int argc;
- char *argv[];
- {
- unsigned linenum, flagged;
- char flagc, string [256], *ptr;
- int ignore, alllines, body;
-
- ignore = FALSE; /*assume no switches*/
- alllines = TRUE;
- body = TRUE;
-
- while (*argv[1] == '/') { /*now, look for switches*/
- for (ptr = argv[1]; *ptr; ptr++)
- switch (tolower (*ptr)) {
- case '/': break; /*ignore imbedded /'s*/
- case 'i': ignore = TRUE;
- break;
- case 'c': body = FALSE;
- break;
- case 't': alllines = FALSE;
- break;
- default : printf ("Illegal switch: /%c\n",
- *ptr);
- exit (-2);
- }
- argc--; /*remove switch from args*/
- argv++;
- }
-
- if (argc != 2) {
- printf ("Illegal input\n"
- " try : prg3_7b <file [/ilt] string\n");
- exit (-1);
- } else {
- linenum = flagged = 0;
- if (ignore)
- forcelow (argv[1]);
-
- while (gets (string)) {
- if (ignore)
- forcelow (string);
- linenum++;
- flagc = ' ';
- if (find (argv[1], string)) {
- flagc = '*';
- flagged++;
- }
- if (body)
- if (flagc == '*' || alllines)
- printf ("%c %3u: %s\n", flagc,
- linenum, string);
- }
- printf ("\nTotals:\n all lines %3u\n matched %3u\n",
- linenum, flagged);
- }
- }
-
- /*Find - find string1 in string2; if found return 1, else 0 */
- int find (ptr1, ptr2)
- char *ptr1, *ptr2;
- {
- char *tptr1, *tptr2;
-
- for (; *ptr2; ptr2++) {
- tptr1 = ptr1;
- tptr2 = ptr2;
- while (*tptr1++ == *tptr2++)
- if (!*tptr1)
- return 1;
- }
- return 0;
- }
-
- /*Forcelow - force all characters to lower case*/
- void forcelow (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- if (isalpha (*ptr))
- *ptr = tolower (*ptr);
- }