C/Code snippet
[C] 나만의 utils 만들기
2022. 5. 18. 22:35반응형
strongswan uitls에 많이 포함됨.
1. 나만의 str 비교함수 만들기.
/**
* Helper function that compares two strings for equality
*/
static inline bool streq(const char *x, const char *y)
{
return (x == y) || (x && y && strcmp(x, y) == 0);
}
반응형
'C > Code snippet' 카테고리의 다른 글
[C] 가변 리스트 (pack된 속성)에 대한 고찰, Variable list of packed attribute (0) | 2022.05.22 |
---|---|
[C] 버블정렬 (0) | 2022.05.19 |
[Linux/C] strcat 사용시 주의사항 (0) | 2022.05.14 |
[C] C언어 문자열 나누기 (strtok 사용) (0) | 2022.05.10 |
[C] SA_SIGINFO 예제 (0) | 2022.05.09 |