lazysphere/lib/buffer.h

17 lines
304 B
C
Raw Normal View History

2023-05-06 04:39:44 +00:00
#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