-
Notifications
You must be signed in to change notification settings - Fork 1
/
reverse-lines-pointer.c
57 lines (46 loc) · 989 Bytes
/
reverse-lines-pointer.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
#include <stdio.h>
#define MAXLINE 1000 /* maximum input line size */
int my_getline(char *line, int maxline);
void reverse(char *s, int length);
/* print lines longer tan TARGET_LENGTH */
int main()
{
int len; /* current line length */
char line[MAXLINE]; /* current input line */
while((len = my_getline(line, MAXLINE)) != EOF && len > 0) {
reverse(line, len);
printf("%s\n", line);
}
printf("\n");
return 0;
}
/* my_getline: read a line into s, return length */
/* or return EOF if EOF received */
/* my_getline:get line into s, return length */
int my_getline(char *s, int lim)
{
int c, i;
i=0;
while(--lim > 0 && (c=getchar()) != EOF && c != '\n') {
*s++ = c;
i++;
}
if(c =='\n' )
*s++ = c;
*s = '\0';
return i;
}
void reverse(char *s, int length)
{
int end = length - 1;
char *t = (s + end);
char temp;
while(t - s > 0) {
printf("shit %ld\n", t - s);
temp = *t;
*t = *s;
*s = temp;
t--;
s++;
}
}