diff options
author | 2015-06-24 23:33:18 +0200 | |
---|---|---|
committer | 2015-06-24 23:33:18 +0200 | |
commit | 7a07ecba2a16abf918cc87dc23367f9a97cea3a6 (patch) | |
tree | 1c70358b79b3e9c38e6848657f609f6a3842bd68 /src/lib/util/cstrpool.c | |
parent | 3035213d045bc0edc31194fa5309c60ade5919ff (diff) | |
parent | cda316ccfea6017740fbbf8d76a732eff54047ff (diff) |
Merge pull request #3 from mamedev/master
merge with base
Diffstat (limited to 'src/lib/util/cstrpool.c')
-rw-r--r-- | src/lib/util/cstrpool.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/util/cstrpool.c b/src/lib/util/cstrpool.c index 36c5ff694bb..dfb41e25232 100644 --- a/src/lib/util/cstrpool.c +++ b/src/lib/util/cstrpool.c @@ -71,11 +71,11 @@ bool const_string_pool::contains(const char *string) } /** - * @fn const_string_pool::pool_chunk::pool_chunk() + * @fn const_string_pool::pool_chunk::pool_chunk() * - * @brief ------------------------------------------------- - * pool_chunk - constructor - * -------------------------------------------------. + * @brief ------------------------------------------------- + * pool_chunk - constructor + * -------------------------------------------------. */ const_string_pool::pool_chunk::pool_chunk() @@ -85,15 +85,15 @@ const_string_pool::pool_chunk::pool_chunk() } /** - * @fn const char *const_string_pool::pool_chunk::add(const char *string) + * @fn const char *const_string_pool::pool_chunk::add(const char *string) * - * @brief ------------------------------------------------- - * add - add a string to this pool - * -------------------------------------------------. + * @brief ------------------------------------------------- + * add - add a string to this pool + * -------------------------------------------------. * - * @param string The string to add. + * @param string The string to add. * - * @return null if it fails, else a char*. + * @return null if it fails, else a char*. */ const char *const_string_pool::pool_chunk::add(const char *string) |