bc_string.h 432 B

123456789101112131415161718192021
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #
  6. /* $Id$ */
  7. /* Strings are allocated in a fixed string descriptor table
  8. ** This mechanism is used to avoid string copying as much as possible
  9. */
  10. typedef struct{
  11. char *strval;
  12. int strcount;
  13. int strlength;
  14. } String;
  15. String *_newstr() ;
  16. #define MAXSTRING 1024