반응형




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);
}

 

반응형