Posts Tagged ‘realpath’

canonicalize_file_name – return the canonicalized filename
USAGE
#define _GNU_SOURCE
#include <stdlib.h>

char *canonicalize_file_name (const char *path);

DESCRIPTION
The call canonicalize_file_name(path) is equivalent to the call real-
[...]

Thursday, August 27th, 2009 at 00:15 | Comments Off
Categories: c

bindtextdomain – set directory containing message catalogs
USAGE
#include <libintl.h>

char * bindtextdomain (const char * domainname, const char * dirname);

DESCRIPTION
The bindtextdomain function sets the base directory of the hierarchy
[...]

Wednesday, August 26th, 2009 at 02:48 | Comments Off
Categories: B
TOP