1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#ifndef DICT_H_INCLUDED
#define DICT_H_INCLUDED
#include "vector.h"
#include "byteorder.h"
struct strbuf;
void init_keywords(vector keywords);
int get_sys_max_fds(int *);
int print_rr_weight(struct strbuf *buff, long v);
int print_pgfailback(struct strbuf *buff, long v);
int print_pgpolicy(struct strbuf *buff, long v);
int print_no_path_retry(struct strbuf *buff, long v);
int print_undef_off_zero(struct strbuf *buff, long v);
int print_dev_loss(struct strbuf *buff, unsigned long v);
int print_off_int_undef(struct strbuf *buff, long v);
int print_auto_resize(struct strbuf *buff, long v);
int print_flush_on_last_del(struct strbuf *buff, long v);
#endif /* DICT_H_INCLUDED */
|