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
번호 분류 제목 글쓴이 날짜 조회 수
345 Database [oracle] SQL문 실행 방법 3가지 file hooni 2013.12.19 12119
344 Develop [css] z-index에 설정할 수 있는 최대값? hooni 2013.12.20 14694
343 Develop [js] jQuery plugin 요약 hooni 2013.12.20 10696
342 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18509
341 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12681
340 Develop [php] GregorianToJD(), JDToGregorian() 함수 내용 hooni 2013.12.25 10589
339 Develop [php] 하루 전 날짜 쉽게 구하기. hooni 2013.12.25 12190
338 Etc [용어] POC, Pilot, BMT에 대한 IT 업계에서 통용되는 의미 hooni 2014.01.02 41946
337 Develop [js] AngularJS를 소개합니다. file hooni 2014.01.06 13010
336 Etc iOS 에서 쓸만한 오프라인 구글지도 찾기 hooni 2014.01.06 16031
335 Develop [ios] UIButton multi-line iOS7 hooni 2014.01.09 11431
334 System/OS [linux] iconv를 이용하여 euc-kr 문서를 utf-8로 대량으로 변환하기 file hooni 2014.01.09 12215
Board Pagination Prev 1 ... 65 66 67 68 69 70 71 72 73 74 ... 98 Next
/ 98