summaryrefslogtreecommitdiff
path: root/apt.h
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2019-05-27 15:58:22 -1000
committerSam Bingner <sam@bingner.com>2019-05-27 15:58:51 -1000
commit25745dd37ec53d28cab8226cf7e45e7fe4f408b5 (patch)
treecd444b45eca72a7646318195ebfdfb386381179c /apt.h
parent1d744444486fc66c8f12e2a8f0e81773a65bf545 (diff)
Use apt 1.4.9
Diffstat (limited to 'apt.h')
-rw-r--r--apt.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/apt.h b/apt.h
index c00968c..6971dcd 100644
--- a/apt.h
+++ b/apt.h
@@ -2,14 +2,7 @@
#define APT_H
#include <unistd.h>
-
-template <typename Type_>
-Type_ *memrchr(Type_ *data, int value, int size) {
- for (int i = 0; i != size; ++i)
- if (data[size - i - 1] == value)
- return data + size - i - 1;
- return 0;
-}
+#define DPKG_DATADIR "/usr/share/dpkg"
template <typename Type_>
static Type_ *strchrnul(Type_ *s, int c) {