GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
6
Releases
Fork
: 0
uBixOS
/
ubixos
Transfer to URL with SHA
Find file
Newer
Older
tree:
9d638dc9af
Branches
Tags
×
UBIXOS-0.01
UBIXOS-0.5
UBIXOS-1.0
UBIXOS-OLD
UBIXOS-PRE
master
ubixos
/
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); }