tesseract  4.00.00dev
cutil.cpp File Reference
#include "cutil.h"
#include "tprintf.h"
#include "callcpp.h"
#include <stdlib.h>

Go to the source code of this file.

Macros

#define RESET_COUNT   2000
 

Functions

long long_rand (long limit)
 
FILE * open_file (const char *filename, const char *mode)
 
bool exists_file (const char *filename)
 Check whether the file exists. More...
 

Macro Definition Documentation

◆ RESET_COUNT

#define RESET_COUNT   2000

Definition at line 47 of file cutil.cpp.

Function Documentation

◆ exists_file()

bool exists_file ( const char *  filename)

Check whether the file exists.

Definition at line 92 of file cutil.cpp.

92  {
93  bool exists = false;
94  FILE *f = NULL;
95  if ((f = fopen(filename, "rb")) != NULL) {
96  fclose(f);
97  exists = true;
98  }
99  return exists;
100 }
const char * filename
Definition: ioapi.h:38

◆ long_rand()

long long_rand ( long  limit)

Definition at line 56 of file cutil.cpp.

56  {
57 #if RAND_MAX < 0x1000000
58  static long seed;
59 
60  long num;
61  num = (long) rand () << 16;
62  num |= rand () & 0xffff;
63  seed ^= num;
64  long result = num % limit;
65  while (result < 0) {
66  result += limit;
67  }
68  return result;
69 #else
70  return (long)((double)limit * rand()/(RAND_MAX + 1.0));
71 #endif
72 }
typedef long(ZCALLBACK *tell_file_func) OF((voidpf opaque

◆ open_file()

FILE* open_file ( const char *  filename,
const char *  mode 
)

Definition at line 82 of file cutil.cpp.

82  {
83  FILE *thisfile = NULL;
84  if ((thisfile = fopen (filename, mode)) == NULL) {
85  tprintf ("Could not open file, %s\n", filename);
86  exit (1);
87  }
88  return (thisfile);
89 }
#define tprintf(...)
Definition: tprintf.h:31
const char int mode
Definition: ioapi.h:38
const char * filename
Definition: ioapi.h:38