home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / ntunix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  438 b   |  29 lines

  1. #ifndef __NT_UNIX_H
  2. #define __NT_UNIX_H
  3.  
  4. /*
  5.  * Common functions not implemented by MicroSoft.
  6.  *
  7.  * Copyright (C) 1994, NeXT, Inc.
  8.  * All Rights Reserved.
  9.  *
  10.  */
  11.  
  12.  
  13. struct timeval {
  14.     long tv_sec;
  15.     long tv_usec;
  16. };
  17.  
  18. struct timezone {
  19.     int tz_minuteswest;
  20.     int tz_dsttime;
  21. };
  22.  
  23. int gettimeofday (struct timeval *tv, struct timezone *tz);
  24.  
  25. int strcasecmp (char *left, char *right);
  26.  
  27.  
  28. #endif __NT_UNIX_H
  29.