home *** CD-ROM | disk | FTP | other *** search
- /* Program 3_7a - Search STDIN for a given string
- by Stephen R. Davis, 1987
-
- Search the input stream (STDIN) for a given character string.
- Ouput on the output stream (STDOUT) everything input with those
- lines containing the string marked. Print totals at the bottom
- of number of lines with string and number of lines total.
- */
-
- #include <stdio.h>
-
- /*prototype definitions - */
- int main (int, char **);
- int find (char *, char *);
-
- /*Main - after making sure one argument is present, search for
- that argument in the input stream STDIN. Mark and count
- the occurrences*/
- main (argc, argv)
- int argc;
- char *argv[];
- {
- unsigned linenum, flagged;
- char flagc, string [256];
-
- if (argc != 2) {
- printf ("Illegal input\n"
- " try : prog12a <file string\n");
- exit (-1);
- } else {
- linenum = flagged = 0;
- while (gets (string)) {
- flagc = ' ';
- if (find (argv[1], string)) {
- flagc = '*';
- flagged++;
- }
- 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;
- }