Defines | |
#define | CRFSUITE_VERSION "0.12" |
Version number of CRFSuite library. | |
#define | CRFSUITE_COPYRIGHT "Copyright (c) 2007-2011 Naoaki Okazaki" |
Copyright string of CRFSuite library. | |
#define | FLOAT_MAX DBL_MAX |
Maximum value of a float value. | |
Typedefs | |
typedef double | floatval_t |
Type of a float value. | |
Enumerations | |
enum | { CRFSUITE_SUCCESS = 0, CRFSUITEERR_UNKNOWN = 0x80000000, CRFSUITEERR_OUTOFMEMORY, CRFSUITEERR_NOTSUPPORTED, CRFSUITEERR_INCOMPATIBLE, CRFSUITEERR_INTERNAL_LOGIC, CRFSUITEERR_OVERFLOW, CRFSUITEERR_NOTIMPLEMENTED } |
Status codes. More... | |
Functions | |
int | crfsuite_interlocked_increment (int *count) |
Increments the value of the integer variable as an atomic operation. | |
int | crfsuite_interlocked_decrement (int *count) |
Decrements the value of the integer variable as an atomic operation. |
#define CRFSUITE_COPYRIGHT "Copyright (c) 2007-2011 Naoaki Okazaki" |
Copyright string of CRFSuite library.
#define CRFSUITE_VERSION "0.12" |
Version number of CRFSuite library.
#define FLOAT_MAX DBL_MAX |
Maximum value of a float value.
typedef double floatval_t |
Type of a float value.
anonymous enum |
Status codes.
int crfsuite_interlocked_decrement | ( | int * | count | ) |
Decrements the value of the integer variable as an atomic operation.
count | The pointer to the integer variable. |
int crfsuite_interlocked_increment | ( | int * | count | ) |
Increments the value of the integer variable as an atomic operation.
count | The pointer to the integer variable. |