HelenOS sources
nomatch 650 uspace/lib/posix/src/fnmatch.c nomatch("hello?", "hello", 0);
nomatch 654 uspace/lib/posix/src/fnmatch.c nomatch("he[sl]lo", "heblo", 0);
nomatch 655 uspace/lib/posix/src/fnmatch.c nomatch("he[^sl]lo", "hello", 0);
nomatch 656 uspace/lib/posix/src/fnmatch.c nomatch("he[^sl]lo", "heslo", 0);
nomatch 658 uspace/lib/posix/src/fnmatch.c nomatch("he[!sl]lo", "hello", 0);
nomatch 659 uspace/lib/posix/src/fnmatch.c nomatch("he[!sl]lo", "heslo", 0);
nomatch 665 uspace/lib/posix/src/fnmatch.c nomatch("[a-ce-z]", "d", 0);
nomatch 668 uspace/lib/posix/src/fnmatch.c nomatch("[^a-ce-z]", "a", 0);
nomatch 669 uspace/lib/posix/src/fnmatch.c nomatch("[^a-ce-z]", "c", 0);
nomatch 671 uspace/lib/posix/src/fnmatch.c nomatch("[^a-ce-z]", "e", 0);
nomatch 672 uspace/lib/posix/src/fnmatch.c nomatch("[^a-ce-z]", "z", 0);
nomatch 677 uspace/lib/posix/src/fnmatch.c nomatch("hello[[:alpha:]]world", "hello world", 0);
nomatch 680 uspace/lib/posix/src/fnmatch.c nomatch("/hoooo*", "/hooooooo/hooo", FNM_PATHNAME);
nomatch 681 uspace/lib/posix/src/fnmatch.c nomatch("/hoooo*/", "/hooooooo/hooo", FNM_PATHNAME);
nomatch 685 uspace/lib/posix/src/fnmatch.c nomatch("/hoooo*/", "/hooooooo/hooo", FNM_PATHNAME | FNM_LEADING_DIR);
nomatch 686 uspace/lib/posix/src/fnmatch.c nomatch("/hoooo", "/hooooooo/hooo", FNM_LEADING_DIR);
nomatch 694 uspace/lib/posix/src/fnmatch.c nomatch("???*??", "hell", 0);
nomatch 696 uspace/lib/posix/src/fnmatch.c nomatch("", "hell", 0);
nomatch 697 uspace/lib/posix/src/fnmatch.c nomatch("?", "hell", 0);
nomatch 698 uspace/lib/posix/src/fnmatch.c nomatch("??", "hell", 0);
nomatch 699 uspace/lib/posix/src/fnmatch.c nomatch("???", "hell", 0);
nomatch 704 uspace/lib/posix/src/fnmatch.c nomatch("*", ".hello", FNM_PERIOD);
nomatch 706 uspace/lib/posix/src/fnmatch.c nomatch("?hello", ".hello", FNM_PERIOD);
nomatch 709 uspace/lib/posix/src/fnmatch.c nomatch("/home/user/*", "/home/user/.hello", FNM_PATHNAME | FNM_PERIOD);
nomatch 711 uspace/lib/posix/src/fnmatch.c nomatch("HeLlO", "hello", 0);
HelenOS homepage, sources at GitHub