| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- C
- github
- 깃 설정
- 이진수 덧셈
- Algorithm
- Git Bash
- 큰수 작은수 덧셈
- c언어
- sshkey
- 리눅스
- 깃
- ascii code
- RSA
- Bublble Sotring
- ssh
- git setting
- Binary Addiition
- 깃허브
- git
- ssh key
- git rsa
- 깃허브 초기설정
- z
- 시스템프로그래밍
- Bubble Sort
Archives
- Today
- Total
목록Major (1)
Codex
[C] Linux ftw 구현
1.ftw() 란?ftw함수는 해당 경로안의 모든 디렉토리들을 탐색하여 보여준다.2. SYNOPSIS #include int ftw(const char *path, int (*fn)(const char *, const struct sta *ptr, int flag),int depth); int nftw(const char *path, int (*fn)(const char *, const struct stat *ptr, int flag, struct FTW *), int depth, int flags);ftw는 path, fn, depth의 3가지 인자가 필요하다.path : 탐색될 대상이 되는 경로.fn : 탐색중 발견된 파일의 정보를 받는 콜백 포인터.depth : 탐색중 몇개의 하위디렉토리를 탐색할것..
Major/시스템 프로그래밍
2016. 11. 5. 23:35