pam-eid/pam_eid.h

18 lines
274 B
C
Raw Permalink Normal View History

2024-10-29 13:39:15 +01:00
/*
This software is licensed under GPL-3, as shown in the file LICENSE
Author: Linux Gruppe IRB
Copyright: Linux Gruppe IRB, 2024
*/
#ifndef _PAM_EID_H
#define _PAM_EID_H
typedef struct Params {
int echo_pin;
int debug;
} Params;
extern Params params;
#endif