shithub: npe

ref: e8bd74f2530f77647921e586c7f89d31f661a7f5
dir: /libnpe/realpath.c/

View raw version
#include <u.h>
#include <libc.h>
#include "limits.h"

char *
realpath(char *path, char *buffer)
{
	char *s, p[PATH_MAX];
	int f;

	s = nil;
	if((f = open(path, OREAD)) >= 0){
		if(fd2path(f, p, sizeof(p)) == 0)
			s = buffer == nil ? strdup(p) : strcpy(buffer, p);
		close(f);
	}else if(strlen(path) < sizeof(p)){
		strcpy(buffer, path);
		s = cleanname(buffer);
	}

	return s;
}