Develop
2013.04.23 13:15
[c] 파일(int fd)에서 개행문자 단위로 읽기 by 후리자
조회 수 8084 댓글 0
#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;
}
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
373 | Develop |
[c] 바로 보고 정리할 것.. ㅋㄷㅋㄷ
![]() |
hooni | 2013.04.23 | 8044 |
372 | Develop | [js] ajax를 이용해 외부문서 불러오기.. | hooni | 2013.04.23 | 8039 |
371 | Develop |
[c] 숫자 맞추는 게임..
![]() |
hooni | 2013.04.23 | 8033 |
370 | Develop |
[c++] mfc로 만든 사용자 계정 리스트 출력(EnumUser) 프로그램 예제
![]() |
hooni | 2013.04.23 | 8029 |
369 | Develop |
[asp] 폼메일 예제와 메일 포워딩 프로그램
![]() |
hooni | 2013.04.23 | 8026 |
368 | Develop |
[php] 서버 이상 체크 해서 문자보내는 샘플소스..
![]() |
hooni | 2013.04.23 | 8019 |
367 | Develop | [js] 이벤트 핸들러(Event Handlers) | hooni | 2003.04.23 | 8017 |
366 | Develop |
[c] 베이지언(Bayesian) 패턴인식 과제 ㅋㅋ
![]() |
hooni | 2013.04.23 | 8016 |
365 | Develop |
논문에 들어갈 툴바 테스트 해볼 것..
![]() |
hooni | 2013.04.23 | 8013 |
364 | Develop |
[pdf] 윈도우즈 95 시스템 프로그래밍(Windows 95 system programming)
![]() |
hooni | 2013.04.23 | 8008 |
363 | Develop | [c] 간단한 점 이동 샘플 소스코드 | hooni | 2013.04.23 | 7982 |
362 | Develop | [js] get방식, url이후 모두 그대로 읽어오기.. | hooni | 2013.04.23 | 7981 |