GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Fork
: 0
uBixOS
/
ubix
Transfer to URL with SHA
Find file
Newer
Older
branch:
master
Branches
Tags
×
master
ubix
/
src
/
lib
/
libc
/
generic
/ getcwd.c
reddawg
on 6 Aug 2002
105 bytes
Continuation Of LIBC As Well As Adding Some Basic CLI Applications
Raw
Blame
History
#include <sys/types.h> char *getcwd(char *buffer,uLong size) { buffer[0] = '/'; return(buffer); }