Search bar anchor
This commit is contained in:
@@ -49,4 +49,13 @@ String PollStdout(Allocator allocator, Process *process);
|
||||
void WriteStdin(Process *process, String string);
|
||||
void CloseStdin(Process *process);
|
||||
|
||||
double get_time_in_micros(void);
|
||||
double get_time_in_micros(void);
|
||||
|
||||
enum MakeDirResult {
|
||||
MakeDirResult_Success,
|
||||
MakeDirResult_Exists,
|
||||
MakeDirResult_NotFound,
|
||||
MakeDirResult_ErrorOther,
|
||||
};
|
||||
|
||||
MakeDirResult MakeDir(String path);
|
||||
@@ -276,13 +276,6 @@ int64_t GetFileModTime(String file) {
|
||||
}
|
||||
}
|
||||
|
||||
enum MakeDirResult {
|
||||
MakeDirResult_Success,
|
||||
MakeDirResult_Exists,
|
||||
MakeDirResult_NotFound,
|
||||
MakeDirResult_ErrorOther,
|
||||
};
|
||||
|
||||
MakeDirResult MakeDir(String path) {
|
||||
Scratch scratch;
|
||||
MakeDirResult result = MakeDirResult_Success;
|
||||
|
||||
Reference in New Issue
Block a user