Skip to content

Commit 376ad91

Browse files
author
Joshua Goller
committed
tabber builds without error
1 parent 74a8a2e commit 376ad91

File tree

7 files changed

+30
-24
lines changed

7 files changed

+30
-24
lines changed

ch-5/tabber/include/entab.h ch-5/tabber/include/tabber.h

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ int generate_stop_list(const int start, const int interval, int** tab_stops,
2020
int* const tab_stops_len);
2121
int next_tab_stop(const int* const tab_stops, const int tab_stops_len,
2222
const int column);
23+
int isdigits(const char* const string, const int len);

ch-5/tabber/src/detab.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <string.h>
44

55
#include "common.h"
6-
#include "entab.h"
6+
#include "tabber.h"
77

88
#define WHITESPACE '.'
99

ch-5/tabber/src/entab.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <string.h>
44

55
#include "common.h"
6-
#include "entab.h"
6+
#include "tabber.h"
77

88
#define TAB_CHAR '$'
99

ch-5/tabber/src/input.c

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <stdlib.h>
55
#include <string.h>
66

7-
#include "entab.h"
7+
#include "tabber.h"
88

99
static char usage[] =
1010
"usage: $tabber -b <entab|detab> -m <interval+start> -l <stops>\n";
@@ -121,19 +121,16 @@ static int parse_l(int* const i, const int argc, char** const argv,
121121
}
122122

123123
// Read list of tab stop elements; verify that each tabstop is a number,
124-
// returning when we find the first one that isn't. Start at arg
125-
// immediately following -l
126-
char* current_stop = argv[++(*i)];
124+
// returning when we find the first one that isn't.
125+
char* current_stop = NULL;
126+
(*i)++; // advance from -l to first tab stop
127127
while (*i < argc) {
128-
// verify current stop is a number; quit if not.
129-
for (int k = 0; k < (int)strlen(current_stop); k++) {
130-
if (isdigit(current_stop[k]) == 0) {
131-
return 0;
132-
}
128+
current_stop = argv[(*i)++];
129+
if (isdigits(current_stop, (int)strlen(current_stop))) {
130+
stop_list[stop_list_len++] = atoi(current_stop);
131+
} else {
132+
break;
133133
}
134-
// copy stop to stop list, advance to next arg
135-
stop_list[stop_list_len++] = atoi(current_stop);
136-
current_stop = argv[++(*i)];
137134
}
138135

139136
*tab_stops = stop_list;
@@ -170,6 +167,9 @@ int parse_flags(const int argc, char** const argv, int** tab_stops,
170167
if (parse_l(&i, argc, argv, tab_stops, tab_stops_len) == -1) {
171168
return -1;
172169
}
170+
if (tab_stops == NULL) {
171+
return -1;
172+
}
173173
break;
174174
default:
175175
printf("tabber: error - invalid flag %s\n", current_arg);

ch-5/tabber/src/main.c

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <stdlib.h>
33

44
#include "common.h"
5-
#include "entab.h"
5+
#include "tabber.h"
66

77
int main(int argc, char** argv) {
88
int len = 0; // current line length
@@ -28,13 +28,6 @@ int main(int argc, char** argv) {
2828
return -1;
2929
}
3030

31-
// Testing: input handling
32-
printf("tab_stops (%d): ", tab_stops_len);
33-
for (int i = 0; i < tab_stops_len; i++) {
34-
printf("%d ", tab_stops[i]);
35-
}
36-
printf("\n");
37-
3831
// do the thing
3932
while ((len = mygetline(line, MAXLEN)) > 0) {
4033
processed_line = behavior(line, len, tab_stops, tab_stops_len);

ch-5/tabber/src/misc.c

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
#include <ctype.h>
12
#include <stdio.h>
23
#include <stdlib.h>
34

4-
#include "entab.h"
5+
#include "tabber.h"
56

67
int generate_stop_list(const int start, const int interval, int** tab_stops,
78
int* const tab_stops_len) {
@@ -57,3 +58,14 @@ int next_tab_stop(const int* const tab_stops, const int tab_stops_len,
5758

5859
return -1;
5960
}
61+
62+
// isdigits(): if string contains only digits, return 1;
63+
// otherwise return 0.
64+
int isdigits(const char* const string, const int len) {
65+
for (int i = 0; i < len; i++) {
66+
if (isdigit(string[i]) == 0) {
67+
return 0;
68+
}
69+
}
70+
return 1;
71+
}

ch-5/tabber/tabber-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function valg(){
44
valgrind -q --leak-check=full --show-leak-kinds=all --error-exitcode=42 $1
55
}
66

7-
#./bin/tabber
7+
./bin/tabber
88
printf "a b" | valgrind -q --leak-check=full --show-leak-kinds=all --error-exitcode=42 ./bin/tabber -b entab
99
printf "a\t\tb" | valgrind -q --leak-check=full --show-leak-kinds=all --error-exitcode=42 ./bin/tabber -b detab
1010
printf "a b" | valgrind -q --leak-check=full --show-leak-kinds=all --error-exitcode=42 ./bin/tabber -b detab -l 0 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75

0 commit comments

Comments
 (0)