Blame src/sysutil.h

Packit c32a2d
/*
Packit c32a2d
	sysutil: generic utilities to interact with the OS (signals, paths)
Packit c32a2d
Packit c32a2d
	copyright ?-2015 by the mpg123 project - free software under the terms of the LGPL 2.1
Packit c32a2d
	see COPYING and AUTHORS files in distribution or http://mpg123.org
Packit c32a2d
	initially written by Michael Hipp (dissected/renamed by Thomas Orgis)
Packit c32a2d
*/
Packit c32a2d
Packit c32a2d
#ifndef _MPG123_SYSUTIL_H_
Packit c32a2d
#define _MPG123_SYSUTIL_H_
Packit c32a2d
Packit c32a2d
int split_dir_file(const char *path, char **dname, char **fname);
Packit c32a2d
/* Length of directory part in given path. */
Packit c32a2d
size_t dir_length(const char *path);
Packit c32a2d
Packit c32a2d
#endif
Packit c32a2d