aboutsummaryrefslogtreecommitdiff
path: root/1-22_wordwrap.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--1-22_wordwrap.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/1-22_wordwrap.c b/1-22_wordwrap.c
index 5e17b50..83acfd6 100644
--- a/1-22_wordwrap.c
+++ b/1-22_wordwrap.c
@@ -53,22 +53,22 @@ int b_find_blank(char s[], int lim) {
int main() {
while (j = get_line(data, MAXLEN)) {
- if (j == 80) {
- // We know it's a long line now. Let's make sure we're breaking in
- // the right place
- k = b_find_blank(data, MAXLEN);
- //printf("%d\n", k);
- if (k > -1) {
- data[k] = '\n';
- data[MAXLEN] = '\0';
- printf("%s", data);
- continue;
- } else {
- data[MAXLEN] = '\0';
- printf("%s\n", data);
- continue;
- }
+ if (j == 80) {
+ // We know it's a long line now. Let's make sure we're breaking in
+ // the right place
+ k = b_find_blank(data, MAXLEN);
+ //printf("%d\n", k);
+ if (k > -1) {
+ data[k] = '\n';
+ data[MAXLEN] = '\0';
+ printf("%s", data);
+ continue;
+ } else {
+ data[MAXLEN] = '\0';
+ printf("%s\n", data);
+ continue;
}
+ }
printf("%s", data);
}