geda.h 591 B

123456789101112131415161718192021222324
  1. /*
  2. * geda_pcb.h - Dump objects in the gEDA PCB board/module format
  3. *
  4. * Written 2009, 2011 by Werner Almesberger, 2016 by Erich Heinzle
  5. * Copyright 2009, 2011 by Werner Almesberger
  6. * Copyright 2016, Erich Heinzle
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #ifndef GEDA_H
  14. #define GEDA_H
  15. #include <stdio.h>
  16. int geda(FILE *file, const char *one);
  17. #endif /* !GEDA_H */