Root/cameo/gnuplot.h

1/*
2 * gnuplot.h - Gnuplot file input/output
3 *
4 * Written 2010 by Werner Almesberger
5 * Copyright 2010 Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#ifndef GNUPLOT_H
14#define GNUPLOT_H
15
16#include "path.h"
17
18
19struct path *gnuplot_read(const char *name, double r_tool_default);
20void gnuplot_write(const char *name, const struct path *paths);
21void gnuplot_append(const char *name, const struct path *paths);
22
23#endif /* !GNUPLOT_H */
24

Archive Download this file

Branches:
master



interactive