mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-29 06:52:34 +03:00
242846f07c
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@2939 1f5c12ca-751b-0410-a591-d2e778427230
14 lines
344 B
C
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
|