B: dumpa( vector, nwds [, heading, format] );
C:
   void dumpa(const void *vector, int nwds,
              [const char *heading, const char *format]);
DUMPA displays "vector[0]" through "vector[nwds]" on the current write unit. DUMPA always writes four words of the vector per line, even if a format is supplied.
dumpa(buffer, 63, "catalogue block dump");
    Dumps buffer[0] through buffer[63] in octal.
dumpa(buffer, 63);
    As above, but without the identifying header.
dumpa(buffer, 63, "quite a few strings", " %s");
    Dumps the strings in buffer[0] through buffer[63],
    four per line.
Copyright © 1996, Thinkage Ltd.