/* * portable_basename.h * * Author: Intel A80486DX2-66 * License: Unlicense */ #ifndef _PORTABLE_BASENAME_H #define _PORTABLE_BASENAME_H #include #include #include static char* correct_slashes(const char* path); char* portable_basename(const char* raw_path); #endif /* _PORTABLE_BASENAME_H */