IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 11:13:48 AM (20 years ago)
Author:
Paul Price
Message:

Synchronising with SDRS, and cleaning up:

  • Replaced is_psType() with PS_ASSERT_PTR() throughout psLib.
  • Changed "char *" to "psString" where appropriate in psDB and a few other places (to indicate pointers on the PS memory system).
  • Removed psLogArguments and psTraceArguments (functionality in psArgumentVerbosity).
  • Renamed psMetadataLookupMD to psMetadataLookupMetadata (it was about time...). Similarly with the psPolynomial?D{From,To}MD functions.
  • Removed psMetadataRemove() since it is ambiguous about what's removed --- use psMetadataRemove{Key,Index}.
  • psArrayRemoveByPos --> psArrayRemoveIndex
  • psArrayRemove --> psArrayRemoveData
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psSlurp.h

    r8996 r9538  
     1#ifndef PS_SLURP_H
     2#define PS_SLURP_H
     3
    14#include <stdio.h>
    2 #include <pslib.h>
     5#include "psString.h"
    36
    4 psString psSlurpFD(int fd);
    5 psString psSlurpFile(FILE *stream);
     7
     8// Read ("slurp") a file (specified by file descriptor)
     9// and return a string containing the entire file.
     10psString psSlurpFD(int fd               // File descriptor to read
     11                  );
     12
     13// Read ("slurp") a file (specified by file stream)
     14// and return a string containing the entire file.
     15psString psSlurpFile(FILE *stream       // File stream to read
     16                    );
     17
     18
     19#endif
Note: See TracChangeset for help on using the changeset viewer.