mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +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;
|
|
}
|