Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Dennis Eichhorn 2022-11-20 14:02:11 +01:00
commit fd97920115
3 changed files with 184 additions and 180 deletions

View File

@ -15,8 +15,10 @@
#include <string.h> #include <string.h>
#include <inttypes.h> #include <inttypes.h>
namespace Stdlib { namespace Stdlib
namespace HashTable { {
namespace HashTable
{
typedef struct { typedef struct {
const char *key; const char *key;
void *value; void *value;
@ -213,7 +215,7 @@ namespace Stdlib {
free(table->entries); free(table->entries);
} }
}; }
} }
#endif #endif

View File

@ -13,8 +13,10 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
namespace Utils { namespace Utils
namespace ArraySort { {
namespace ArraySort
{
inline inline
void reverse_int(int *arr, int size) void reverse_int(int *arr, int size)
{ {