aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_array.h
AgeCommit message (Collapse)AuthorFilesLines
2016-02-22wmem: add null-terminator support.Dario Lombardo1-0/+8
This change makes wmem_array more similar to GArray by adding two functions that mimic the first two params of g_array_new(). Change-Id: Iaec999cd2e44f79f44d766be5d39741b73602e5a Reviewed-on: https://code.wireshark.org/review/13989 Petri-Dish: Evan Huus <eapache@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Evan Huus <eapache@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-07-06Add wmem_array_sort() which just hands off to the standard library's qsort().Evan Huus1-0/+4
svn path=/trunk/; revision=50411
2013-07-06In some versions of some OSes, even <string.h> declares index() underGuy Harris1-1/+1
some circumstances. Use array_index as a variable name instead, to avoid warnings. svn path=/trunk/; revision=50404
2013-07-06Simple growable array implementation for wmem.Evan Huus1-0/+101
svn path=/trunk/; revision=50400