mosesdecoder/contrib/lmserver/stats.h
Barry Haddow 7b472960b1 Move projects from top level to contrib
server build probably broken
2011-11-23 14:48:50 +00:00

14 lines
344 B
C

#ifndef lmserver_stats_h
#define lmserver_stats_h
/* stats */
void stats_prefix_init(void);
void stats_prefix_clear(void);
void stats_prefix_record_get(const char *key, const bool is_hit);
void stats_prefix_record_delete(const char *key);
void stats_prefix_record_set(const char *key);
/*@null@*/
char *stats_prefix_dump(int *length);
#endif