home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / SRC / SUNPAS / PGETSTR.C < prev    next >
C/C++ Source or Header  |  1994-04-27  |  347b  |  27 lines

  1. #include <stdio.h>
  2. #include "vogle.h"
  3.  
  4. /*
  5.  * This should match the Pascal type 'varying [n] of char'
  6.  */
  7.  
  8. typedef struct {
  9.     int    n;
  10.     char    s[1];    /* SO compiler doesn't bitch about zero length */
  11. } Vstring;
  12.  
  13. /*
  14.  * GetString
  15.  */
  16. int
  17. GetString(bcol, s)
  18.     int    bcol;
  19.     Vstring    *s;
  20. {
  21.     char    *p = (char *)s->s;
  22.  
  23.     s->n = getstring(bcol, p);
  24.  
  25.     return (s->n);
  26. }
  27.