aboutsummaryrefslogtreecommitdiff
path: root/4.1.c
blob: e848d0cc3e2ccd426486014ac4dc2a04c03917c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <stdio.h>

#define MAXLEN 1000

int get_line(char line[], const int max);
int strindex(char source[], char pattern[]);

int 
main(void)
{
  int found, rightmost;
  char line[MAXLEN];

  char pattern[] = "ould";
  found  = 0;

  while (get_line(line, MAXLEN) > 0)
    if ((rightmost = strindex(line, pattern)) >= 0) {
      printf("%s >> match at char %d\n", line, rightmost+1);
      found++;
    }

  printf("\nSneedGrep found %d match%s\n", found, (found > 0) ? "es" : "");

  return 0;
}

int 
get_line(char line[], const int max)
{
  int i;
  char input;

  for (i = 0; (input = getchar()) != EOF && input != '\n' && i < max-2; i++)
    line[i] = input;

  if (input == '\n' && i < max-2)
    line[i++] = '\n';

  line[i] = '\0';

  return i;
}

int 
strindex(char source[], char pattern[])
{
  int i, j, k, rightmost;

  rightmost = -1;

  for (i = 0; source[i] != '\0'; i++) {
    for (j = i, k = 0; pattern[k] != '\0' && source[j] == pattern[k]; j++, k++)
      ;

    if (pattern[k] == '\0')
      rightmost = i;
  }

  return rightmost;
}