summaryrefslogtreecommitdiff
path: root/tools/apbuild/test-app/randomapp1.c
blob: 70252276502a36764e82d38618aaeba59bd54249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <ctype.h>
#include <fnmatch.h>

int main() {
  char *respath = malloc(PATH_MAX);
  unsigned char c = (unsigned char)"c";
  
  printf("foo\n");
  printf("%d\n", isalpha(c));
  realpath("/some/path", respath);
  fnmatch ("foo", "bar", 0);
  return 0;
}