summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.h
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-01-27 23:38:49 +0100
committerAllan McRae <allan@archlinux.org>2014-03-03 02:25:54 +0100
commit42f4a5081e06793be6c807d50cd7ec0a83bbcdf1 (patch)
treea07e733cdf17121263ff838f7b38e018f4d4afdd /lib/libalpm/util.h
parentf27fad9b890d2696201e1df2356dd4d66f813ddd (diff)
downloadpacman-42f4a5081e06793be6c807d50cd7ec0a83bbcdf1.tar.gz
pacman-42f4a5081e06793be6c807d50cd7ec0a83bbcdf1.tar.xz
util: Add _alpm_realloc() and _alpm_greedy_grow()
These will be used in the following patches. Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib/libalpm/util.h')
-rw-r--r--lib/libalpm/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h
index 250c5300..20f63f64 100644
--- a/lib/libalpm/util.h
+++ b/lib/libalpm/util.h
@@ -141,6 +141,8 @@ int _alpm_raw_ncmp(const char *first, const char *second, size_t max);
int _alpm_access(alpm_handle_t *handle, const char *dir, const char *file, int amode);
int _alpm_fnmatch_patterns(alpm_list_t *patterns, const char *string);
int _alpm_fnmatch(const void *pattern, const void *string);
+void *_alpm_realloc(void **data, size_t *current, const size_t required);
+void *_alpm_greedy_grow(void **data, size_t *current, const size_t required);
#ifndef HAVE_STRSEP
char *strsep(char **, const char *);