Contents

조회 수 7152 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
#define MAXSIZE 65535
#define CRLF "\n"

#include <string.h>
#include <stdio.h>
#include <unistd.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

const char *getline(int sockfd){
        static char buf[MAXSIZE + 1] = "";
        static char *pbuf = buf;

        int i;
        ssize_t len;

        char *retptr;
        char *crlf;

        do{
                /* 개행문자 찾으면 */
                if(crlf = strstr(pbuf, CRLF)){
                        retptr = pbuf;

                        pbuf = crlf + strlen(CRLF);
                        *crlf = '\0';

                        return retptr;
                }
                
                /* 못 찾았으면 */
                len = strlen(pbuf);
                for(i = 0; i < len; i++) buf[i] = pbuf[i];
                pbuf = buf;
        }while(read(sockfd, buf + len, MAXSIZE - len) > 0);
        /* 데이터 읽고 다시 개행문자 있는지 검사하러 올라가자 */

        return NULL; // 에러 또는 EOF
}

int main(){
        const char *line;

        int fd;
        fd = open("test.c", O_RDONLY);

        while(line = getline(fd))
                printf("LINE : '%s'\n", line);

        close(fd);

        return 0;
}


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
405 Develop [php] whois정보 조회 프로그램 hooni 2003.04.23 11735
404 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 11748
403 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 11768
402 Develop JSON, BSON 변환 file hooni 2013.04.23 11814
401 Develop [c++] 기초강좌 #04(클래스) hooni 2003.04.23 11838
400 Develop [java] 날짜 계산 (Date, SimpleDateFormat) hooni 2013.04.23 11854
399 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 11942
398 Develop [php] 한샘 전자발주 시스템.. file hooni 2013.04.23 11989
397 System/OS [unix] SUN Solaris 싱글모드.. ㅡ,.ㅡ; hooni 2003.04.23 11992
396 System/OS [linux] 쉘 스크립트 (Shell Script) hooni 2003.04.23 12065
395 Develop [c++] 현승이가 준 P2P 프로그램 소스 ㅋㅋ file hooni 2013.04.23 12074
394 System/OS [linux] /etc/fstab 설정 방법.. ㅋㅋ hooni 2013.04.23 12086
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 98 Next
/ 98