home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / mint110 / cookie.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  297 b   |  21 lines

  1. /* header file for dealing with the cookie jar */
  2.  
  3. #ifndef _COOKIE_H
  4. #define _COOKIE_H
  5.  
  6. union clong {
  7.     char    aschar[4];
  8.     long    aslong;
  9. };
  10.  
  11. struct cookie {
  12.     union clong tag;
  13.     long value;
  14. };
  15.  
  16. typedef struct cookie COOKIE;
  17.  
  18. #define CJAR    ((COOKIE **) 0x5a0L)
  19.  
  20. #endif /* _COOKIE_H */
  21.