MAJ_21_22_chaine.c

Aller à la documentation de ce fichier.
00001 /*  This file is part of MED.
00002  *
00003  *  COPYRIGHT (C) 1999 - 2015  EDF R&D, CEA/DEN
00004  *  MED is free software: you can redistribute it and/or modify
00005  *  it under the terms of the GNU Lesser General Public License as published by
00006  *  the Free Software Foundation, either version 3 of the License, or
00007  *  (at your option) any later version.
00008  *
00009  *  MED is distributed in the hope that it will be useful,
00010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *  GNU Lesser General Public License for more details.
00013  *
00014  *  You should have received a copy of the GNU Lesser General Public License
00015  *  along with MED.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 
00019 #include "med_hdfi21.h"
00020 #include "med21.h"
00021 #include "MAJ_21_22.h"
00022 #include <string.h>
00023 
00024 void MAJ_21_22_chaine(char *ancienne_chaine,char *nouvelle_chaine,med_int n)
00025 {
00026   int i;
00027   int j;
00028   char tmp[MED_TAILLE_PNOM+1];
00029 
00030   for (i=0;i<n;i++) {
00031     if (i == n-1) {
00032       strcpy(tmp,ancienne_chaine+i*ANCIEN_MED_TAILLE_PNOM);
00033       if (strlen(tmp) < ANCIEN_MED_TAILLE_PNOM)
00034         for(j=strlen(tmp);j<ANCIEN_MED_TAILLE_PNOM;j++) 
00035           tmp[j] = ' ';
00036     }
00037     else
00038       strncpy(tmp,ancienne_chaine+i*ANCIEN_MED_TAILLE_PNOM,ANCIEN_MED_TAILLE_PNOM);
00039     tmp[ANCIEN_MED_TAILLE_PNOM] = '\0';
00040     /*          12345678 */
00041     strcat(tmp,"        ");
00042     /*     printf("[%s]\n",tmp); */
00043     if (i == 0)
00044       strcpy(nouvelle_chaine,tmp);
00045     else
00046       strcat(nouvelle_chaine,tmp);
00047   }
00048   *(nouvelle_chaine+MED_TAILLE_PNOM*n) = '\0';
00049 } 

Généré le Thu Oct 8 14:26:16 2015 pour MED fichier par  doxygen 1.6.1