libcsplit(3)

libcsplit(3) Library Functions Manual libcsplit(3)

NAME

libcsplit.hLibrary to support cross-platform C split string functions

LIBRARY

library “libcsplit”

SYNOPSIS

#include <libcsplit.h>

Support functions
const char *
libcsplit_get_version(void);

Error functions
void
libcsplit_error_free(libcsplit_error_t **error);

int
libcsplit_error_fprint(libcsplit_error_t *error, FILE *stream);

int
libcsplit_error_sprint(libcsplit_error_t *error, char *string, size_t size);

int
libcsplit_error_backtrace_fprint(libcsplit_error_t *error, FILE *stream);

int
libcsplit_error_backtrace_sprint(libcsplit_error_t *error, char *string, size_t size);

DESCRIPTION

The libcsplit_get_version() function is used to retrieve the library version.

RETURN VALUES

Most of the functions return NULL or -1 on error, dependent on the return type. For the actual return values refer to libcsplit.h

ENVIRONMENT

None

FILES

None

BUGS

Please report bugs of any kind to <joachim.metz@gmail.com> or on the project website: http://code.google.com/p/libcsplit/

AUTHOR

These man pages were written by Joachim Metz.

COPYRIGHT

Copyright 2008-2013, Joachim Metz <joachim.metz@gmail.com>. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

SEE ALSO

the libcsplit.h include file

May 3, 2013 libcsplit