sakharamg's picture
Uploading all files
158b61b
raw
history blame contribute delete
344 Bytes
#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