aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cc1/sys.c
blob: 693062a67821987b2584d21b900208042fda1ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "sys.h"
#include <libgen.h>
#include <linux/limits.h>
#include <unistd.h>
#include "../lib/ducc.h"

static char* get_self_path() {
    char* buf = calloc(PATH_MAX, sizeof(char));
    ssize_t len = readlink("/proc/self/exe", buf, PATH_MAX - 1);
    if (len == -1 || len == PATH_MAX - 1) {
        return NULL;
    }
    buf[len] = '\0';
    return buf;
}

// It returns a path not including final / except for root directory.
char* get_self_dir() {
    char* path = get_self_path();
    return dirname(path);
}