1 #ifndef PROC_DEVNAME_H 2 #define PROC_DEVNAME_H 3 4 #include "procps.h" 5 6 EXTERN_C_BEGIN 7 8 #define ABBREV_DEV 1 /* remove /dev/ */ 9 #define ABBREV_TTY 2 /* remove tty */ 10 #define ABBREV_PTS 4 /* remove pts/ */ 11 12 extern unsigned dev_to_tty(char *restrict ret, unsigned chop, int dev, int pid, unsigned int flags); 13 14 extern int tty_to_dev(const char *restrict const name); 15 16 EXTERN_C_END 17 #endif 18