summaryrefslogtreecommitdiff
path: root/tests/get_domainpart.c
blob: e05aee164d9435b9f011ed24266f34c67a6c0f17 (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 - ok\n");
		return 0;
	} else {
		printf("'%s' != '%s'!\n", result, expected);
		return 1;
	}
}