/* Copyright (c) 2013-2023 Jeffrey Pfau
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <mgba-util/vector.h>

DEFINE_VECTOR(IntList, int);
DEFINE_VECTOR(UIntList, unsigned);
DEFINE_VECTOR(SInt8List, int8_t);
DEFINE_VECTOR(SInt16List, int16_t);
DEFINE_VECTOR(SInt32List, int32_t);
DEFINE_VECTOR(SIntPtrList, intptr_t);
DEFINE_VECTOR(UInt8List, uint8_t);
DEFINE_VECTOR(UInt16List, uint16_t);
DEFINE_VECTOR(UInt32List, uint32_t);
DEFINE_VECTOR(UIntPtrList, uintptr_t);
DEFINE_VECTOR(StringList, char*);
