Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stats.h « lmserver « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 895dfcd10548637ecec34a48d64a9afeff27a152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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