mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
14 lines
242 B
C
14 lines
242 B
C
#ifndef _UTILH_
|
|
#define _UTILH_
|
|
|
|
#include <keys.h>
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
|
|
enum keys find_keyname(char*);
|
|
enum keys find_ansi(char*);
|
|
void read_press(u_char*, char*);
|
|
void strcln(char **dest, const char *source);
|
|
|
|
#endif
|