mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
13 lines
150 B
C
13 lines
150 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main() {
|
||
|
char buffer[8192];
|
||
|
|
||
|
buffer[8191] = 0;
|
||
|
getcwd(buffer, 8191);
|
||
|
puts(buffer);
|
||
|
|
||
|
return 0;
|
||
|
}
|