blob: 95665323bb3d5872baea492bdf60f76f13f09f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define _GNU_SOURCE
#include <assert.h>
#include <string.h>
#define test_string(x, expectval) assert(strcmp(basename(x), expectval) == 0)
int main() {
test_string("/usr/lib", "lib");
test_string("/usr/", "");
test_string("/", "");
test_string(".", ".");
test_string("..", "..");
}
|