#include "internal.h" char* fsĀ·basename(char *path) { char *sep; sep = strrchr(path, '/'); return (sep == nil) ? path : sep+1; }