pam-eid/pam_eid.h

18 lines
274 B
C

/*
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