MATES / Modular Automatic Test Equipment System API  2.5.0.0
mates_test_39.c
#include <stdio.h>
#include "mates.h"
int main(void)
{
int success = 0;
MATES_HANDLE h = mates_open("default.mon", 0);
{
printf("Found UCC node.\n");
/* After closing of the handle it is not usable anymore. */
{
success++;
}
{
success++;
}
return (success == 2 ? 0 : -1);
}
else
{
return (0);
}
}