File: gnuplot.h

package info (click to toggle)
plotdrop 0.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 236 kB
  • ctags: 130
  • sloc: ansic: 1,040; makefile: 63
file content (24 lines) | stat: -rw-r--r-- 636 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

/* PlotDrop is free software, released under the GNU General Public License
 * See the COPYING file for licensing details.
 *
 * Copyright 2005 John Spray
 */

#include <stdio.h>
#include "plotdata.h"

// Perform the plotting operation, either to the screen (data, 0, NULL, 0)
// or to a file (data, 1, ...)
char *gnuplot_plot (
	plotdata const *data,
	unsigned int export,
	char *outfile,
	exportformat format);

// Write a GNUPlot script to plot plotdata, to plotscript
void gnuplot_compose_script (FILE *plotscript, plotdata const *data);

// Return a string like "4.0" for "gnuplot 4.0 patchlevel 1"
char* gnuplot_get_version ();