home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / misc / math / fastplot / source / stringutils.def < prev    next >
Encoding:
Modula Definition  |  1995-03-27  |  628 b   |  18 lines

  1. (*********************************************************************)
  2. (*                                                                   *)
  3. (* Module StringUtils Copyright © 1994 by Computer Inspirations      *)
  4. (*                                                                   *)
  5. (*********************************************************************)
  6.  
  7. DEFINITION MODULE StringUtils;
  8.  
  9.  
  10. PROCEDURE ConvRealToStr(VAR str:ARRAY OF CHAR; num:REAL;
  11.                         minchars:CARDINAL; fracchars:INTEGER;
  12.                         pad:CHAR): BOOLEAN;
  13.  
  14.  
  15. PROCEDURE LengthStr(s : ARRAY OF CHAR) : CARDINAL;
  16.  
  17.  
  18. END StringUtils.