This website requires JavaScript.
Explore
Help
Sign In
qorg11
/
k9core
Watch
1
Star
0
Fork
You've already forked k9core
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
976d1ed2bf
k9core
/
src
/
pwd.c
10 lines
92 B
C
Raw
Normal View
History
Unescape
Escape
Add pwd
2020-06-01 19:56:27 +00:00
#
include
<unistd.h>
#
include
<stdio.h>
int
Adhere to style guidelines
2020-06-01 23:42:22 +00:00
main
(
)
{
Add pwd
2020-06-01 19:56:27 +00:00
puts
(
getcwd
(
NULL
,
0
)
)
;
return
1
;
}