Skip to content

Instantly share code, notes, and snippets.

@saidelike
Created July 6, 2021 10:30
Show Gist options
  • Save saidelike/75e9f32389b8a789df33733e06861b38 to your computer and use it in GitHub Desktop.
Save saidelike/75e9f32389b8a789df33733e06861b38 to your computer and use it in GitHub Desktop.
/*
* Structure describing compile-time and run-time options.
*/
struct sudo_defs_types {
char *name;
int type;
char *desc;
struct def_values *values;
bool (*callback)(const union sudo_defs_val *);
union sudo_defs_val sd_un;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment