- 论坛徽章:
- 0
|
昨天答应了“gooderfeng ”兄晚上回家写一个,但是回去后就跟朋友扯了会蛋,就没来得及写,今天早上匆忙之间就写了一个,方法比较笨,希望各位多提意见,谢谢!
- #include <unistd.h>
- #include <fcntl.h>
- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <errno.h>
- #include <string.h>
- #define BUFFER_SIZE 8192
- int main(int argc, char **argv)
- {
- int fd;
- int bytes_read, enter_end, count;
- char buffer[2*BUFFER_SIZE], tmp_buf[BUFFER_SIZE+1];
- char *token;
- char *delim = "\n";
- static int n=0;
-
- if (argc != 2) {
- fprintf(stderr, "Usage:%s filename\n\a", argv[0]);
- exit(1);
- }
- if ((fd = open(argv[1], O_RDONLY)) == -1) {
- fprintf(stderr, "Open %s Error:%s\n", argv[1], strerror(errno));
- exit(1);
- }
- memset(tmp_buf, 0x00, sizeof(tmp_buf));
- memset(buffer, 0x00, sizeof(buffer));
- while (bytes_read = read(fd, tmp_buf, BUFFER_SIZE)) {
- enter_end = 0;
- count = 0;
- bytes_read = strlen(strcat(buffer, tmp_buf));
- if ((bytes_read == -1) && (errno != EINTR)) {
- perror("read data");
- break;
- } else if (bytes_read > 0) {
- if (buffer[bytes_read-1] == '\n')
- enter_end = 1;
- token = strtok(buffer, delim);
- printf("%s\n", token);
- count += strlen(token) + 1;
- n++;
- for ( ; (token = strtok(NULL, delim)) != NULL; n++) {
- count += strlen(token) + 1;
- if (count >= bytes_read && enter_end != 1) {
- strcpy(buffer, token);
- n--;
- } else
- printf("%s\n", token);
- }
- }
- if (enter_end == 1)
- memset(buffer, 0x00, sizeof(buffer));
- memset(tmp_buf, 0x00, sizeof(tmp_buf));
- }
-
- printf("Total lines: %d\n", n);
- close(fd);
-
- return 0;
- }
复制代码 |
|