FreeBASIC  0.91.0
sys_getcwd.c
Go to the documentation of this file.
1 /* get current dir */
2 
3 #include "../fb.h"
4 #include <windows.h>
5 
6 ssize_t fb_hGetCurrentDir( char *dst, ssize_t maxlen )
7 {
8  return GetCurrentDirectory( maxlen, dst );
9 }