/*******************************************************************/ /* slibtool: a skinny libtool implementation, written in C */ /* Copyright (C) 2016--2024 SysDeer Technologies, LLC */ /* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ /*******************************************************************/ #include #include #include #include "slibtool_driver_impl.h" #include "slibtool_errinfo_impl.h" #include "slibtool_visibility_impl.h" #include "slibtool_ar_impl.h" static int slbt_strcmp(const void * a, const void * b) { return strcmp(*(const char **)a,*(const char **)b); } slbt_hidden int slbt_update_mapstrv( const struct slbt_driver_ctx * dctx, struct slbt_archive_meta_impl * mctx) { size_t nsyms; const char ** symv; const char ** mapstrv; for (nsyms=0,symv=mctx->symstrv; *symv; symv++) nsyms++; if (!(mapstrv = calloc(nsyms+1,sizeof(const char *)))) return SLBT_SYSTEM_ERROR(dctx,0); for (nsyms=0,symv=mctx->symstrv; *symv; symv++) mapstrv[nsyms++] = *symv; qsort(mapstrv,nsyms,sizeof(const char *),slbt_strcmp); mctx->mapstrv = mapstrv; return 0; }