MAJ_21_22_chaine.c

Aller à la documentation de ce fichier.
00001 /*  This file is part of MED.
00002  *
00003  *  COPYRIGHT (C) 1999 - 2011  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 #ifndef MESGERR
00020 #define MESGERR 1
00021 #endif
00022 
00023 #include "med_hdfi21.h"
00024 #include "med21.h"
00025 #include "MAJ_21_22.h"
00026 #include <string.h>
00027 
00028 void MAJ_21_22_chaine(char *ancienne_chaine,char *nouvelle_chaine,med_int n)
00029 {
00030   int i;
00031   int j;
00032   char tmp[MED_TAILLE_PNOM+1];
00033 
00034   for (i=0;i<n;i++) {
00035     if (i == n-1) {
00036       strcpy(tmp,ancienne_chaine+i*ANCIEN_MED_TAILLE_PNOM);
00037       if (strlen(tmp) < ANCIEN_MED_TAILLE_PNOM)
00038         for(j=strlen(tmp);j<ANCIEN_MED_TAILLE_PNOM;j++) 
00039           tmp[j] = ' ';
00040     }
00041     else
00042       strncpy(tmp,ancienne_chaine+i*ANCIEN_MED_TAILLE_PNOM,ANCIEN_MED_TAILLE_PNOM);
00043     tmp[ANCIEN_MED_TAILLE_PNOM] = '\0';
00044     /*          12345678 */
00045     strcat(tmp,"        ");
00046     /*     printf("[%s]\n",tmp); */
00047     if (i == 0)
00048       strcpy(nouvelle_chaine,tmp);
00049     else
00050       strcat(nouvelle_chaine,tmp);
00051   }
00052   *(nouvelle_chaine+MED_TAILLE_PNOM*n) = '\0';
00053 } 

Généré le Mon May 16 17:10:23 2011 pour MED fichier par  doxygen 1.6.1