2009-08-11 23:17:39 +03:00
|
|
|
/*
|
|
|
|
* file.h - File handling
|
|
|
|
*
|
2010-02-20 00:27:25 +02:00
|
|
|
* Written 2009, 2010 by Werner Almesberger
|
|
|
|
* Copyright 2009, 2010 by Werner Almesberger
|
2009-08-11 23:17:39 +03:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef FILE_H
|
|
|
|
#define FILE_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
2009-08-12 02:26:38 +03:00
|
|
|
/*
|
|
|
|
* Returns -1 on error.
|
|
|
|
*/
|
|
|
|
int file_exists(const char *name);
|
|
|
|
|
2009-08-11 23:17:39 +03:00
|
|
|
char *set_extension(const char *name, const char *ext);
|
|
|
|
int save_to(const char *name, int (*fn)(FILE *file));
|
|
|
|
void save_with_backup(const char *name, int (*fn)(FILE *file));
|
|
|
|
|
|
|
|
void save_fpd(void);
|
|
|
|
void write_kicad(void);
|
|
|
|
void write_ps(void);
|
2010-02-20 00:27:25 +02:00
|
|
|
void write_ps_fullpage(void);
|
2009-08-11 23:17:39 +03:00
|
|
|
|
|
|
|
#endif /* !FILE_H */
|