aboutsummaryrefslogtreecommitdiff
path: root/bin/kiss-readlink.c
blob: 38eaf40bde406e86280898c14b1ef87c5b25187f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// kiss-readlink --- a utility replacement for readlink
// See LICENSE for copyright information

// This is basically a 'readlink -f' command.
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {

  char buf[512];

  if (argc != 2) {
    printf("usage: %s FILE\n", argv[0]);
    return(1);
  }

  if (!realpath(argv[1], buf)) {
    perror("realpath");
    return(1);
  }

  // fputs(buf,stdout);
  printf("%s\n", buf);
  return(0);
}