bc_string.h 272 B

1234567891011121314151617
  1. #
  2. /* $Header$ */
  3. /* Strings are allocated in a fixed string descriptor table
  4. ** This mechanism is used to avoid string copying as much as possible
  5. */
  6. typedef struct{
  7. char *strval;
  8. int strcount;
  9. int strlength;
  10. } String;
  11. String *_newstr() ;
  12. #define MAXSTRING 1024