Develop
2013.04.23 13:15
[c] 파일(int fd)에서 개행문자 단위로 읽기 by 후리자
Views 8084 Comment 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;
}
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
363 | Develop | [ios] UIAlertView 초간단 샘플 ㅎㅎ | hooni | 2013.10.14 | 55966 |
362 | Develop | [ios] UIButton multi-line iOS7 | hooni | 2014.01.09 | 13582 |
361 | Develop | [ios] UIColor 지정에서 RGB define ㅎㅎ | hooni | 2013.04.23 | 23817 |
360 | Develop | [ios] UILabel top alignㅎㅎ | hooni | 2013.04.23 | 23850 |
359 | Develop | [ios] UILabel with two different color text | hooni | 2024.12.14 | 4540 |
358 | Develop | [ios] UITableView 특정 Row만 Update | hooni | 2014.04.08 | 5792 |
357 | Develop | [ios] UIView에서 상위 UIViewController 가져오기 | hooni | 2013.09.27 | 23442 |
356 | Develop | [ios] UIWebView 캐쉬 삭제 | hooni | 2014.04.08 | 4432 |
355 | Develop | [ios] UIWebView 쿠키 유지 | hooni | 2014.01.16 | 12383 |
354 | Develop |
[ios] UIWebView를 이용한 로컬 HTML 파일 표시
![]() |
hooni | 2015.01.02 | 2303 |
353 | Develop | [ios] UIWebView에서 NSURLRequest에 Cookie 실어 보내기 | hooni | 2014.01.16 | 16431 |
352 | Develop | [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 | hooni | 2015.02.10 | 1999 |