1
1
iperf3/src/t_uuid.c

19 строки
283 B
C
Исходник Обычный вид История

2009-07-23 18:22:24 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "iperf_util.h"
2009-07-23 18:22:24 +00:00
int
main(int argc, char **argv)
{
char uuid[37];
get_uuid(uuid);
if (strlen(uuid) != 36)
2009-07-23 18:22:24 +00:00
{
printf("uuid is not 37 characters long %s.\n", uuid);
exit(-1);
2009-07-23 18:22:24 +00:00
}
exit(0);
}