반응형
필요 할 때 마다 검색하기 귀찮아서 내꺼에 저장해 놓음
아래 코드 변환 사이트https://colorscripter.com/
1 2 3 4 5 6 7 8 9 10 11 12 13 | static int StringToHexa(const char *param) { int hex = 0; int count = strlen(param), i = 0; for(i = 0; i < count; i++){ if(*param>= '0' && *param<= '9') hex = hex *16 + *param- '0'; else if(*param>= 'A' && *param<= 'F') hex = hex *16 + *param- 'A' + 10; else if(*param>= 'a' && *param<= 'f') hex = hex *16 + *param- 'a' + 10; param++; } return hex; } |
반응형
'C' 카테고리의 다른 글
TCP/IP 통신 기본 구조 기입. (0) | 2019.02.26 |
---|---|
C언어 TCP/IP 소켓 프로그래밍 Server sample code (0) | 2019.02.07 |