blob: 92b7918e61c941d51aaaaa6ad389a87c43ab6d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
#include <string.h>
#include <stdio.h>
#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 - \033[;32mok\033[0m\n");
		return 0;
	} else {
		printf("'%s' != '%s' - \033[;31mfailed\033[0m\n", result, expected);
		return 1;
	}
}
  |