/usr/include/libploticus.h is in libploticus0-dev 2.42-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /* libploticus.h
* Copyright 1998-2007 Stephen C. Grubb (ploticus.sourceforge.net)
* and Colin Tuckley.
* This code is covered under the GNU General Public License (GPL);
* see the file ./Copyright for details. */
#ifndef LIBPLOTICUS
#define LIBPLOTICUS 1
/* function defines.. */
int ploticus_init( char *device, char *outfilename );
int ploticus_arg( char *name, char *value );
int ploticus_execline( char *line );
int ploticus_execscript( char *scriptfile, int prefabflag );
int ploticus_end();
#endif
|