gnuplot.h 519 B

1234567891011121314151617181920212223
  1. /*
  2. * gnuplot.h - Dump objects in gnuplot 2D format
  3. *
  4. * Written 2011 by Werner Almesberger
  5. * Copyright 2011 by 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. #ifndef GNUPLOT_H
  13. #define GNUPLOT_H
  14. #include <stdio.h>
  15. int gnuplot(FILE *file, const char *one);
  16. #endif /* !GNUPLOT_H */