Blame alsamixer/utils.h

Packit Service a9274b
#ifndef UTILS_H_INCLUDED
Packit Service a9274b
#define UTILS_H_INCLUDED
Packit Service a9274b
Packit Service a9274b
#define ARRAY_SIZE(a) (sizeof(a) / sizeof *(a))
Packit Service a9274b
Packit Service a9274b
unsigned int get_mbs_width(const char *s);
Packit Service a9274b
unsigned int get_max_mbs_width(const char *const *s, unsigned int count);
Packit Service a9274b
const char *mbs_at_width(const char *s, int *width, int dir);
Packit Service a9274b
char *read_file(const char *file_name, unsigned int *file_size);
Packit Service a9274b
Packit Service a9274b
#endif