NeoMutt
2024-10-02-37-gfa9146
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
29
bool
print_version
(FILE *fp);
30
bool
print_copyright
(
void
);
31
bool
feature_enabled
(
const
char
*name);
32
33
#endif
/* MUTT_VERSION_H */
print_copyright
bool print_copyright(void)
Print copyright message.
Definition:
version.c:517
print_version
bool print_version(FILE *fp)
Print system and compile info to a file.
Definition:
version.c:388
feature_enabled
bool feature_enabled(const char *name)
Test if a compile-time feature is enabled.
Definition:
version.c:544