16 lines
301 B
C
16 lines
301 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 _AUTHORIZED_EID_H
|
||
|
#define _AUTHORIZED_EID_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
FILE *auth_fopen(struct passwd *passwd, const char *mode);
|
||
|
|
||
|
#endif
|