Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed Oct 3, 2024
1 parent 01978e2 commit dbea584
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
#include "path.h"
#endif

#include "wio.h"

char* get_current_directory(void) {
/*
Returns the current working directory.
Expand All @@ -58,7 +60,7 @@ char* get_current_directory(void) {
DWORD cwds = 0;

#if defined(_UNICODE)
wchat_t* wcwd = NULL;
wchar_t* wcwd = NULL;

cwds = GetCurrentDirectoryW(0, NULL);

Expand Down

0 comments on commit dbea584

Please sign in to comment.