conversion.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*************************************/
  2. /* Auteur : Rémi Synave */
  3. /* Date de création : 01/03/07 */
  4. /* Date de modification : 15/03/15 */
  5. /* Version : 0.4 */
  6. /*************************************/
  7. /***************************************************************************/
  8. /* This file is part of a2ri. */
  9. /* */
  10. /* a2ri is free software: you can redistribute it and/or modify it */
  11. /* under the terms of the GNU Lesser General Public License as published */
  12. /* by the Free Software Foundation, either version 3 of the License, or */
  13. /* (at your option) any later version. */
  14. /* */
  15. /* a2ri is distributed in the hope that it will be useful, */
  16. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  17. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  18. /* GNU Lesser General Public License for more details. */
  19. /* */
  20. /* You should have received a copy of the GNU Lesser General Public */
  21. /* License along with a2ri. */
  22. /* If not, see <http://www.gnu.org/licenses/>. */
  23. /***************************************************************************/
  24. #include "conversion.h"
  25. /********** INTERMEDIATE TYPES AND FUNCTIONS **********/
  26. /* Les fonctions intermédiaires sont préfixées de IF */
  27. /* et les types intermédiaires de IT */
  28. /********** MAIN FUNCTIONS **********/
  29. /**
  30. Conversion d'un format de fichier en un autre. Le format des fichiers est définis par leurs extensions.
  31. @param input chemin du fichier entrant
  32. @param output chemin du fichier sortant
  33. @return aucun
  34. */
  35. void
  36. a2ri_vf_conversion (
  37. const char * const input,
  38. const char * const output)
  39. {
  40. vf_model m;
  41. //initialisation d'un nouveau modèle
  42. a2ri_vf_init (&m);
  43. //ouverture du modèle input
  44. a2ri_vf_open_file (input, &m);
  45. //enregistrement du modèle output
  46. a2ri_vf_save_file (output, &m);
  47. a2ri_vf_free (&m);
  48. return;
  49. }