Contents

조회 수 7158 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
325 Develop [c] 연산자 우선순위.. ㅋㅋ hooni 2013.04.23 7189
324 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 7674
323 Develop [c] 게임 AI FSM 테스트 샘플 소스.. 꽤 괜찮은 소스.. file hooni 2013.04.23 7392
322 Develop [c++] 인라인 함수 설명과 예제.. file hooni 2013.04.23 6655
321 Develop [c++] 인라인 함수에 대한 설명 hooni 2013.04.23 7122
320 Develop [c] SetTimer() & KillTimer() & 일회용 Timer hooni 2013.04.23 9218
319 Develop [c] 네트워크 관련 프로그래밍 (포트스캔 탐지 샘플) file hooni 2013.04.23 7209
318 Develop [c] 프로세스 검사하기 hooni 2013.04.23 8036
317 Develop [asp] 폼메일 예제와 메일 포워딩 프로그램 file hooni 2013.04.23 7148
316 Develop [asp] 폼 메일 소스 file hooni 2013.04.23 7379
315 Develop [php] php+db 연동(odbc, mssql, mysql, sybase) 3 hooni 2013.04.23 8564
314 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 16427
Board Pagination Prev 1 ... 39 40 41 42 43 44 45 46 47 48 ... 71 Next
/ 71