#ifndef BUFFER_H #define BUFFER_H #include "def.h" char* get_path_buffer(void); int push_path_buffer(const char* string); void pop_path_buffer(int i); char* get_path_buffer_2(void); int push_path_buffer_2(const char* string); void pop_path_buffer_2(int i); bool is_dot_dir(const char* path); #endif