Blame src/libout123/stringlists.h

Packit c32a2d
/*
Packit c32a2d
	stringlists: creation of paired string lists for one-time consumption
Packit c32a2d
Packit c32a2d
	copyright 2015 by the mpg123 project
Packit c32a2d
	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 Thomas Orgis
Packit c32a2d
*/
Packit c32a2d
Packit c32a2d
#ifndef MPG123_H_STRINGLISTS
Packit c32a2d
#define MPG123_H_STRINGLISTS
Packit c32a2d
Packit c32a2d
int stringlists_add( char ***alist, char ***blist
Packit c32a2d
                   , const char *atext, const char *btext, int *count);
Packit c32a2d
Packit c32a2d
#endif