1
2
3
4
5
6
7
8
9
10 #ifndef PCMK__CRM_COMMON_STRINGS__H
11 #define PCMK__CRM_COMMON_STRINGS__H
12
13 #include <glib.h>
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19
20
21
22
23
24
25
26 long long crm_get_msec(const char *input);
27
28 int pcmk_parse_interval_spec(const char *input, guint *result_ms);
29
30
31 gboolean crm_is_true(const char *s);
32
33 int crm_str_to_boolean(const char *s, int *ret);
34
35
36 char *crm_strdup_printf(char const *format, ...) G_GNUC_PRINTF(1, 2);
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif