Changeset 3572 in Sophya for trunk/FrEROS/AnaLC/nomfits2.c


Ignore:
Timestamp:
Feb 7, 2009, 10:50:34 PM (17 years ago)
Author:
cmv
Message:

char* -> const char* pour regler les problemes de deprecated string const... + comparaison unsigned signed + suppression EVOL_PLANCK rz+cmv 07/02/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FrEROS/AnaLC/nomfits2.c

    r3308 r3572  
    9393/*
    9494++
    95 unsigned long int decode_zeza(char* s, int i1, int i2)
     95unsigned long int decode_zeza(const char* s, int i1, int i2)
    9696        Pour coder (Rc) en entier decimal la chaine de caracteres
    9797        comprise entre `s[i1]' et `s[i2]' interpretee comme
     
    9999--
    100100*/
    101 unsigned long int decode_zeza(char* s, int i1, int i2)
     101unsigned long int decode_zeza(const char* s, int i1, int i2)
    102102{
    103103  unsigned long int D, ibase = 1;
     
    247247/*
    248248++
    249 int Test_NoCorrupt(char *flnm)
     249int Test_NoCorrupt(const char *flnm)
    250250        Test pour voir si le fichier Fits de nom `flnm' n'est
    251251        pas corrompu.
     
    260260--
    261261*/
    262 int Test_NoCorrupt(char *flnm)
     262int Test_NoCorrupt(const char *flnm)
    263263{
    264264int lp=0;
Note: See TracChangeset for help on using the changeset viewer.