Initial release

This commit is contained in:
Pierre Pronchery 2008-02-25 00:42:32 +00:00
parent 80d1e935eb
commit 411897c90a
2 changed files with 77 additions and 0 deletions

31
include/System/object.h Normal file
View File

@ -0,0 +1,31 @@
/* $Id$ */
/* Copyright (c) 2008 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS System libSystem */
/* libSystem is not free software; you can redistribute it and/or modify it
* under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike
* 3.0 Unported as published by the Creative Commons organization.
*
* libSystem 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 Creative Commons Attribution-NonCommercial-
* ShareAlike 3.0 Unported license for more details.
*
* You should have received a copy of the Creative Commons Attribution-
* NonCommercial-ShareAlike 3.0 along with libSystem; if not, browse to
* http://creativecommons.org/licenses/by-nc-sa/3.0/ */
#ifndef LIBSYSTEM_OBJECT_H
# define LIBSYSTEM_OBJECT_H
/* Object */
typedef void Object;
/* functions */
Object * object_new(size_t size);
void object_delete(Object * object);
#endif /* !LIBSYSTEM_OBJECT_H */

46
src/object.c Normal file
View File

@ -0,0 +1,46 @@
/* $Id$ */
/* Copyright (c) 2007 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS System libSystem */
/* libSystem is not free software; you can redistribute it and/or modify it
* under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike
* 3.0 Unported as published by the Creative Commons organization.
*
* libSystem 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 Creative Commons Attribution-NonCommercial-
* ShareAlike 3.0 Unported license for more details.
*
* You should have received a copy of the Creative Commons Attribution-
* NonCommercial-ShareAlike 3.0 along with libSystem; if not, browse to
* http://creativecommons.org/licenses/by-nc-sa/3.0/ */
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "System.h"
/* Object */
/* public */
/* functions */
/* object_new */
void * object_new(size_t size)
{
void * ptr;
if((ptr = malloc(size)) == NULL)
{
error_set_code(1, "%s", strerror(errno));
return NULL;
}
return ptr;
}
/* object_delete */
void object_delete(void * object)
{
free(object);
}