IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 3, 2006, 12:01:09 PM (20 years ago)
Author:
eugene
Message:

converted fits_ to gfits_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libfits/matrix/F_read_M.c

    r7039 r7054  
    33
    44/*********************** fits read matrix ***********************************/
    5 int fits_read_matrix (char *filename, Matrix *matrix) {
     5int gfits_read_matrix (char *filename, Matrix *matrix) {
    66
    77  FILE *f;
     
    99  int status;
    1010
    11   status = fits_read_header (filename, &header);
     11  status = gfits_read_header (filename, &header);
    1212  if (!status) {
    1313    fprintf (stderr, "error reading header of FITS file %s\n", filename);
     
    2020  fseek (f, header.size, 0);
    2121 
    22   status = fits_load_matrix (f, matrix, &header);
     22  status = gfits_load_matrix (f, matrix, &header);
    2323
    2424  fclose (f);
Note: See TracChangeset for help on using the changeset viewer.