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
- web3js
- Hyperledger
- C
- Realm
- 다윈
- ethereum
- firebase
- test
- 스트리밍
- quick-start
- kotlin
- 안드로이드
- Android
- dataginding
- Exception
- hardwareacceleration
- LAYER_TYPE_SOFTWARE
- vuepress
- error
- bigquery
- porterduff
- Gradle
- fabic
- null safety
- 컴파일
- log
- Glide
- convert
- coroutines
- fabric-sdk-java
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