-
Notifications
You must be signed in to change notification settings - Fork 0
/
entab.c
128 lines (104 loc) · 3.09 KB
/
entab.c
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include <stdio.h>
#define TABSTOP 8
#define MAXLINE 1000
#define MAXLINES 1000
int length(char string[]);/* funkcja zwraca ilosc znakow w podanym stringu*/
int getline(char line[], int lim);
void copy(char to[], char from[]);
void entab(char to[], char from[]);
int getNextTabstop(int currentPosition, int tabstop);
int checkInsertTab(char str[], int begin, int end);
int main(void)
{
char line[MAXLINE];
/* char lines[MAXLINES]; */
char output[MAXLINES];
while ((getline(line, MAXLINE)) > 0)
entab(output, line); /* biore biezaca linie i entabuje */
return 0;
}
int length(char s[])
{
int i;
i = 0;
while (s[i] != '\0')
++i;
return i-1; /* -1 bo nie chcemy znaku nowej linii \n */
}
int getline(char s[], int lim)
{
int c, i;
for (i = 0; i < lim-1 && (c = getchar())!=EOF && c!='\n'; ++i)
s[i] = c;
if (c == '\n') {
s[i] = c;
++i;
}
s[i] = '\0';
return i;
}
void copy(char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}
void entab(char to[], char from[])
{
int i; /* iterator dla tablicy from */
int j; /* iterator dla tablicy to */
int shift;
int nextTabstop;
int len; /* przechowuje dlugosc stringa */
len = length(from); /* wyliczamy dlugosc tablicy to */
shift = 0;
/* wykonujemy petle po wszystkich elementach tablicy from */
for (i = 0, j = 0; i < len; i++, j++) {
nextTabstop = getNextTabstop(i + shift, TABSTOP);
if (from[i] != ' ') { /* kopiujemy wszystkie znaki poza spacja */
to[j] = from[i];
if (from[i] == '\t') /* a gdy skopiowalismy TABa to ustawiamy przesuniecie */
shift += nextTabstop - i;
}
else { /* jezeli mamy spacje to */
if (checkInsertTab(from, i, nextTabstop - shift)) { /* spr czy mozemy wstawic TAB */
to[j] = '\t'; /* jesli tak to wstawiamy taba */
i = nextTabstop - shift; /* i przenosimy sie za spacje ktore zastapilismy TAB */
}
else
to[j] = ' ';
}
}
to[j] = '\0';
printf("\n%s%s\n", from, to);
}
int getNextTabstop(int currentPosition, int tabstop) {
int nextTabstopPosition;
if (currentPosition <= tabstop - 1)
nextTabstopPosition = tabstop - 1; /* ustawiamy najblizszy TABSTOP */
else { /* lub w razie potrzeby */
nextTabstopPosition = tabstop - 1;
while (currentPosition > nextTabstopPosition)
nextTabstopPosition += tabstop; /*ustawiamy kolejny TABSTOP > i*/
}
return nextTabstopPosition;
}
int checkInsertTab(char str[], int begin, int tabstop) {
int i;
int isSpace = 1;
int spaceCount;
spaceCount = 0;
for (i = begin; i <= tabstop; i++) {
if (str[i] == ' ') {
spaceCount++;
}
if (str[i] != ' ') {
isSpace = 0;
break;
}
/* jezeli mam wstawic TABa to musze obliczyc czy jego szerokosc */
/* bedzie rowna zastepowanym spacja */
}
return isSpace;
}