#include #include #include "xmpp.h" int main(void) { char *input = "test@example.org/3f"; const char *expected = "example.org"; char *result = get_domainpart(input); if (strcmp(result, expected) == 0) { printf("Unit test passed - ok\n"); return 0; } else { printf("'%s' != '%s'!\n", result, expected); return 1; } }