IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 401


Ignore:
Timestamp:
Apr 8, 2004, 12:28:02 PM (22 years ago)
Author:
Paul Price
Message:

Changed psMetadata *ms to *md (previously MetaDataSet, now just Metadata).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psMetadata.h

    r400 r401  
    7878
    7979/// Add entry to the end of the metadata
    80 psMetadataItem *psMetadataAppend(psMetadata *restrict ms, ///< metadata to add to
     80psMetadataItem *psMetadataAppend(psMetadata *restrict md, ///< metadata to add to
    8181                                 psMetadataItem *restrict item ///< Metatdata to add
    8282    );
    8383
    8484/// delete entry from the metadata
    85 psMetadataItem *psMetadataRemove(psMetadata *restrict ms, ///< metadata to delete from
     85psMetadataItem *psMetadataRemove(psMetadata *restrict md, ///< metadata to delete from
    8686                                 const char *restrict key ///< Key to delete
    8787    );
     
    9292
    9393/// get the next entry in the sequence
    94 psMetadataItem *psMetadataGetNext(psMetadata *restrict ms, ///< metadata to get from
     94psMetadataItem *psMetadataGetNext(psMetadata *restrict md, ///< metadata to get from
    9595                                  const char *restrict match ///< Match this
    9696    );
    9797
    9898/// find the metadata with the specified key
    99 psMetadataItem *psMetadataLookup(const psMetadata *restrict ms, ///< metadata to look up
     99psMetadataItem *psMetadataLookup(const psMetadata *restrict md, ///< metadata to look up
    100100                                 const char *restrict key ///< Key to find
    101101    );
     
    103103/// print metadata item to the specified stream
    104104void psMetadataItemPrint(FILE *fd,              ///< file descriptor to write to
    105                          const psMetadataItem *restrict ms, ///< item of metadata to print
     105                         const psMetadataItem *restrict md, ///< item of metadata to print
    106106                         const char *prefix        ///< print this at the beginning of each line
    107107    );
Note: See TracChangeset for help on using the changeset viewer.