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_write_M.c

    r7039 r7054  
    33
    44/*********************** fits write matrix ***********************************/
    5 int fits_write_matrix (char *filename, Matrix *matrix) {
     5int gfits_write_matrix (char *filename, Matrix *matrix) {
    66
    77  FILE *f;
     
    1313  fseek (f, 0, SEEK_END);  /* write matrix to end of file! */
    1414
    15   status = fits_fwrite_matrix (f, matrix);
     15  status = gfits_fwrite_matrix (f, matrix);
    1616  fclose (f);
    1717  return (status);
     
    1919
    2020/*********************** fits write matrix ***********************************/
    21 int fits_fwrite_matrix (FILE *f, Matrix *matrix) {
     21int gfits_fwrite_matrix (FILE *f, Matrix *matrix) {
    2222
    2323  int i, status, nbytes, Nbytes;
Note: See TracChangeset for help on using the changeset viewer.