NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1
23#ifndef MUTT_VERSION_H
24#define MUTT_VERSION_H
25
26#include <stdbool.h>
27#include <stdio.h>
28
29bool print_version(FILE *fp);
30bool print_copyright(void);
31bool feature_enabled(const char *name);
32
33#endif /* MUTT_VERSION_H */
bool print_copyright(void)
Print copyright message.
Definition: version.c:525
bool print_version(FILE *fp)
Print system and compile info to a file.
Definition: version.c:393
bool feature_enabled(const char *name)
Test if a compile-time feature is enabled.
Definition: version.c:552