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
- 불법유통
- Los
- UKPT
- MITRE ATT&CK
- 기타정보
- 국가기록원
- PHP
- 화학물질안전원
- 대외활동
- codeup
- 국가정보원
- 도구모음
- nurisec
- UKPT level
- Service
- 경기팀
- 12기
- webhacking
- 여행
- 웹 해킹 입문
- 불법유통근절
- suninatas
- 연구모임
- 프로젝트
- HTML
- 화학물질불법유통온라인감시단
- 국정원
- 화학물질
- 파이썬
- 정보보안
Archives
- Today
- Total
목록2024/12/02 (1)
agencies
정규표현식을 이용하여 C 언어에서 함수 추출해보기!
import redef extract_user_defined_function_names(file_path): with open(file_path, 'r') as file: code = file.read() # Regex pattern to match function definitions (not calls) function_pattern = re.compile( r'\b(?:static|extern|inline)?\s*' # Optional specifiers r'(?:void|int|long|float|double|char|short|unsigned|signed|struct\s+\w+|enum\s+\w+|[a-zA-Z_]\w*\s*\*)\s..
Ⅰ. 프로그래밍
2024. 12. 2. 18:21