Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/myhtml/utils/mcobject.h')
-rw-r--r--source/myhtml/utils/mcobject.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/source/myhtml/utils/mcobject.h b/source/myhtml/utils/mcobject.h
deleted file mode 100644
index b68935b..0000000
--- a/source/myhtml/utils/mcobject.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- Copyright (C) 2015-2016 Alexander Borisov
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
- Author: lex.borisov@gmail.com (Alexander Borisov)
-*/
-
-#ifndef MyHTML_UTILS_MCOBJECT_H
-#define MyHTML_UTILS_MCOBJECT_H
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "myhtml/myosi.h"
-
-struct mcobject_chunk {
- unsigned char *begin;
- size_t length;
- size_t size;
-
- struct mcobject_chunk *next;
- struct mcobject_chunk *prev;
-}
-typedef mcobject_chunk_t;
-
-struct mcobject {
- mcobject_chunk_t *chunk;
-
- void **cache;
- size_t cache_size;
- size_t cache_length;
-
- size_t struct_size;
- size_t chunk_size;
-}
-typedef mcobject_t;
-
-
-mcobject_t * mcobject_create(void);
-myhtml_status_t mcobject_init(mcobject_t *mcobject, size_t chunk_size, size_t struct_size);
-void mcobject_clean(mcobject_t *mcobject);
-mcobject_t * mcobject_destroy(mcobject_t *mcobject, bool destroy_self);
-
-void mcobject_chunk_malloc(mcobject_t* mcobject, myhtml_status_t* status);
-
-void * mcobject_malloc(mcobject_t *mcobject, myhtml_status_t* status);
-myhtml_status_t mcobject_free(mcobject_t *mcobject, void *entry);
-
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /* MyHTML_UTILS_MCOBJECT_H */
-