tesseract  3.03
/usr/local/google/home/jbreiden/tesseract-ocr-read-only/vs2010/port/gettimeofday.h File Reference

Go to the source code of this file.

Typedefs

typedef struct timezone tz

Functions

int gettimeofday (struct timeval *tp, struct timezone *tzp)

Typedef Documentation

typedef struct timezone tz

Definition at line 27 of file gettimeofday.h.


Function Documentation

int gettimeofday ( struct timeval *  tp,
struct timezone *  tzp 
)

Definition at line 23 of file gettimeofday.cpp.

                                                           {
  l_int32 sec, usec;
  if (tp == NULL)
    return -1;

  l_getCurrentTime(&sec, &usec);
  tp->tv_sec = sec;
  tp->tv_usec = usec;
  return 0;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines