| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /******************************************************************************
- Copyright (c) 2013 by Hugh Bailey <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source
- distribution.
- ******************************************************************************/
- #pragma once
- #include "c99defs.h"
- #include "base.h"
- #include <wchar.h>
- #include <string.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct base_allocator {
- void *(*malloc)(size_t);
- void *(*realloc)(void *, size_t);
- void (*free)(void *);
- };
- EXPORT void base_set_allocator(struct base_allocator *defs);
- EXPORT void *bmalloc(size_t size);
- EXPORT void *brealloc(void *ptr, size_t size);
- EXPORT void bfree(void *ptr);
- EXPORT size_t bnum_allocs(void);
- EXPORT void *bmemdup(const void *ptr, size_t size);
- static inline char *bstrdup_n(const char *str, size_t n)
- {
- char *dup;
- if (!str || !*str)
- return NULL;
- dup = (char*)bmemdup(str, n+1);
- dup[n] = 0;
- return dup;
- }
- static inline wchar_t *bwstrdup_n(const wchar_t *str, size_t n)
- {
- wchar_t *dup;
- if (!str || !*str)
- return NULL;
- dup = (wchar_t*)bmemdup(str, (n+1) * sizeof(wchar_t));
- dup[n] = 0;
- return dup;
- }
- static inline char *bstrdup(const char *str)
- {
- if (!str)
- return NULL;
- return bstrdup_n(str, strlen(str));
- }
- static inline wchar_t *bwstrdup(const wchar_t *str)
- {
- if (!str)
- return NULL;
- return bwstrdup_n(str, wcslen(str));
- }
- #ifdef __cplusplus
- }
- #endif
|