File: dict.h

package info (click to toggle)
multipath-tools 0.14.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,088 kB
  • sloc: ansic: 64,885; perl: 1,622; makefile: 742; sh: 732; pascal: 155
file content (19 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (2)
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 */