/usr/include/libwaei/range.h is in libwaei-dev 3.6.2-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #ifndef LW_RANGE_INCLUDED
#define LW_RANGE_INCLUDED
G_BEGIN_DECLS
struct _LwRange {
gchar *identifier;
gint lower;
gint higher;
};
typedef struct _LwRange LwRange;
LwRange* lw_range_new_from_pattern (const gchar*);
void lw_range_free (LwRange*);
gboolean lw_range_pattern_is_valid (const gchar*);
gboolean lw_range_string_is_in_range (LwRange*, const gchar*);
gboolean lw_range_int_is_in_range (LwRange*, gint);
G_END_DECLS
#endif
|