forked from Telodendria/Telodendria
Remove Constants.h
This commit is contained in:
parent
5771e615d7
commit
01a6d71101
4 changed files with 8 additions and 39 deletions
1
TODO.txt
1
TODO.txt
|
@ -31,7 +31,6 @@ Due: January 1, 2023
|
||||||
[ ] Config
|
[ ] Config
|
||||||
[ ] API (Config.3)
|
[ ] API (Config.3)
|
||||||
[ ] File format (Config.5)
|
[ ] File format (Config.5)
|
||||||
[ ] Constants
|
|
||||||
[x] HashMap
|
[x] HashMap
|
||||||
[ ] Http
|
[ ] Http
|
||||||
[ ] HttpServer
|
[ ] HttpServer
|
||||||
|
|
|
@ -28,9 +28,12 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <Memory.h>
|
#include <Memory.h>
|
||||||
#include <Constants.h>
|
|
||||||
#include <HashMap.h>
|
#include <HashMap.h>
|
||||||
|
|
||||||
|
#ifndef TELODENDRIA_STRING_CHUNK
|
||||||
|
#define TELODENDRIA_STRING_CHUNK 64
|
||||||
|
#endif
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
HttpRequestMethodToString(const HttpRequestMethod method)
|
HttpRequestMethodToString(const HttpRequestMethod method)
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,12 +23,14 @@
|
||||||
*/
|
*/
|
||||||
#include <Memory.h>
|
#include <Memory.h>
|
||||||
|
|
||||||
#include <Constants.h>
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
|
#ifndef TELODENDRIA_MEMORY_TABLE_CHUNK
|
||||||
|
#define TELODENDRIA_MEMORY_TABLE_CHUNK 256
|
||||||
|
#endif
|
||||||
|
|
||||||
struct MemoryInfo
|
struct MemoryInfo
|
||||||
{
|
{
|
||||||
size_t size;
|
size_t size;
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person
|
|
||||||
* obtaining a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
||||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
#ifndef TELODENDRIA_CONSTANTS_H
|
|
||||||
#define TELODENDRIA_CONSTANTS_H
|
|
||||||
|
|
||||||
#ifndef TELODENDRIA_STRING_CHUNK
|
|
||||||
#define TELODENDRIA_STRING_CHUNK 64
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef TELODENDRIA_MEMORY_TABLE_CHUNK
|
|
||||||
#define TELODENDRIA_MEMORY_TABLE_CHUNK 256
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in a new issue