1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-19 16:45:06 +00:00
QB64-PE/internal/c/libqb/include/filesystem.h

20 lines
408 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
struct qbs;
2023-12-10 05:55:01 +00:00
extern qbs *g_startDir;
qbs *func__cwd();
qbs *func__dir(qbs *context_in);
int32_t func__direxists(qbs *path);
int32_t func__fileexists(qbs *path);
qbs *func__startdir();
void sub_chdir(qbs *str);
void sub_files(qbs *str, int32_t passed);
void sub_kill(qbs *str);
void sub_mkdir(qbs *str);
void sub_name(qbs *oldname, qbs *newname);
void sub_rmdir(qbs *str);