1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*************************************/
- /* Auteur : Rémi Synave */
- /* Date de création : 01/03/07 */
- /* Date de modification : 15/03/15 */
- /* Version : 0.4 */
- /*************************************/
- /***************************************************************************/
- /* This file is part of a2ri. */
- /* */
- /* a2ri is free software: you can redistribute it and/or modify it */
- /* under the terms of the GNU Lesser General Public License as published */
- /* by the Free Software Foundation, either version 3 of the License, or */
- /* (at your option) any later version. */
- /* */
- /* a2ri is distributed in the hope that it will be useful, */
- /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
- /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
- /* GNU Lesser General Public License for more details. */
- /* */
- /* You should have received a copy of the GNU Lesser General Public */
- /* License along with a2ri. */
- /* If not, see <http://www.gnu.org/licenses/>. */
- /***************************************************************************/
- #ifndef CONVERSION__H
- #define CONVERSION__H
- #include <string.h>
- #include "io.h"
- /**
- Conversion d'un format de fichier en un autre. Le format des fichiers est définis par leurs extensions.
- @param input chemin du fichier entrant
- @param output chemin du fichier sortant
- @return aucun
- */
- void a2ri_vf_conversion (
- const char * const input,
- const char * const output);
- #endif
|