home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mint104s.zoo / mint.src / cookie.h < prev    next >
C/C++ Source or Header  |  1993-03-08  |  297b  |  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.