File: util.h

package info (click to toggle)
corosync 3.1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,432 kB
  • sloc: ansic: 44,925; sh: 11,532; makefile: 646
file content (15 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef COROSYNC_TOOLS_UTIL_H_DEFINED
#define COROSYNC_TOOLS_UTIL_H_DEFINED

#ifdef __cplusplus
extern "C" {
#endif

extern int              util_strtonum(const char *str, long long int min_val,
    long long int max_val, long long int *res);

#ifdef __cplusplus
}
#endif

#endif /* COROSYNC_TOOLS_UTIL_H_DEFINED */