Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- coroutines
- fabic
- Glide
- ethereum
- Gradle
- vuepress
- 컴파일
- null safety
- LAYER_TYPE_SOFTWARE
- kotlin
- 안드로이드
- porterduff
- Android
- hardwareacceleration
- Exception
- Realm
- web3js
- Hyperledger
- test
- fabric-sdk-java
- dataginding
- convert
- 다윈
- quick-start
- log
- firebase
- C
- bigquery
- 스트리밍
- error
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
find 흉내내기 - 함수 구현 코드 본문
#include <stdio.h>
#include <string.h>
#define MAXLINE 100
int getline(char *line, int max);
/* find : print lines that match pattern from 1st arg */
int main(int argc, char *argv[])
{
char line[MAXLINE];
int found=0;
long lineno=0;
int c, except=0,number=0; // 선택매개변수 처리용, ex)-n, -x ...
while(--argc>0 && (*++argv)[0]=='-')
while(c=*++argv[0])
switch(c) {
case 'x':
except = 1;
break;
case 'n':
number = 1;
break;
default:
printf("find: ilegal option %c\n",c);
argc=0;
found = -1;
break;
}
if(argc != 1)
printf("Usage : find -x -n pattern \n");
else
while(getline(line, MAXLINE) >0) {
lineno++;
if((strstr(line,*argv)!=NULL)!=except) {
if(number)
printf("%ld:",lineno);
printf("%s", line);
found++;
}
}
return found;
}
Comments