summaryrefslogtreecommitdiffstats
path: root/expac.h
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-11-17 21:24:54 -0500
committerDave Reisner <dreisner@archlinux.org>2014-11-17 21:24:54 -0500
commit015dae3c6f100d30e66ad1234f317650f97eb5a0 (patch)
treea76beb4f79a7b6f2df445d8dc213c309cbc01805 /expac.h
parentb4a303bb85b53d6d44b238174297f66b1d21be5a (diff)
downloadexpac-015dae3c6f100d30e66ad1234f317650f97eb5a0.tar.xz
follow site local conventions
Diffstat (limited to 'expac.h')
-rw-r--r--expac.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/expac.h b/expac.h
index b3acd4a..32e8cff 100644
--- a/expac.h
+++ b/expac.h
@@ -3,21 +3,21 @@
#include <alpm.h>
-typedef enum PackageCorpus {
+typedef enum package_corpus_t {
CORPUS_LOCAL,
CORPUS_SYNC,
CORPUS_FILE,
-} PackageCorpus;
+} package_corpus_t;
-typedef enum SearchWhat {
+typedef enum search_what_t {
SEARCH_EXACT,
SEARCH_GROUPS,
SEARCH_REGEX,
-} SearchWhat;
+} search_what_t;
-typedef struct Expac {
+typedef struct expac_t {
alpm_handle_t *alpm;
-} Expac;
+} expac_t;
#endif /* _EXPAC_H */