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