GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ABSPATH(3) Schily´s LIBRARY FUNCTIONS ABSPATH(3)

abspath(), absnpath(), absfpath() - Expands a relative pathname to a full (absolute) pathname

#include <schily/schily.h>

char *
abspath(relp, absp, asize)
                const   char    *relp;
                        char    *absp;
                        size_t  asize;

char *
absnpath(relp, absp, asize)
                const   char    *relp;
                        char    *absp;
                        size_t  asize;

char *
absfpath(relp, absp, asize, flags)
                const   char    *relp;
                        char    *absp;
                        size_t  asize;
                        int     flags;

abspath() takes a relative path name and converts it into an absolute path name. relp is relative path name that is used as the input. absp is the buffer used for the result of the conversion. asize is the size of the result buffer.

absnpath() behaves like abspath() exept that the file does not need to exist.

absfpath() takes an additional flags parameter from the set of flags from resolvefpath() to control the behavior.

On successful completion, abspath(), absnpath() and absfpath() return a pointer to the resolved name absp. Otherwise, a null pointer is returned and errno is set to indicate the error, and the contents of the buffer pointed to by absp is left in an indeterminate state.

ERANGE
The path does not fit into the suplied buffer.
EFAULT
A null pointer was suplied as pathname.
EINVAL
An empty relative path was supplied.

resolvepath(3), resolvenpath(3), resolvefpath(3)

none
2015/04/27 Joerg Schilling

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.