Remove cfw prefix from files.

This commit is contained in:
Jonathan Schleifer 2012-04-08 22:53:03 +02:00
parent 34c8a7713a
commit 22f8a535f3
12 changed files with 19 additions and 19 deletions

View file

@ -3,11 +3,11 @@ STATIC_LIB = libcorefw.a
LIB_MAJOR = 0 LIB_MAJOR = 0
LIB_MINOR = 0 LIB_MINOR = 0
SRCS = cfwarray.c \ SRCS = array.c \
cfwclass.c \ class.c \
cfwobject.c \ object.c \
cfwrange.c \ range.c \
cfwstring.c string.c
INCLUDES = ${SRCS:.c=.h} \ INCLUDES = ${SRCS:.c=.h} \
corefw.h corefw.h

View file

@ -27,8 +27,8 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
#include "cfwobject.h" #include "object.h"
#include "cfwarray.h" #include "array.h"
struct CFWArray { struct CFWArray {
CFWObject obj; CFWObject obj;

View file

@ -27,7 +27,7 @@
#ifndef __CFWARRAY_H__ #ifndef __CFWARRAY_H__
#define __CFWARRAY_H__ #define __CFWARRAY_H__
#include "cfwclass.h" #include "class.h"
typedef struct CFWArray CFWArray; typedef struct CFWArray CFWArray;
extern CFWClass *cfw_array; extern CFWClass *cfw_array;

View file

@ -24,7 +24,7 @@
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "cfwclass.h" #include "class.h"
const char* const char*
cfw_class_name(CFWClass *cls) cfw_class_name(CFWClass *cls)

View file

@ -1,9 +1,9 @@
#ifndef __COREFW_H__ #ifndef __COREFW_H__
#define __COREFW_H__ #define __COREFW_H__
#include "cfwclass.h" #include "class.h"
#include "cfwobject.h" #include "object.h"
#include "cfwstring.h" #include "string.h"
#include "cfwarray.h" #include "array.h"
#endif #endif

View file

@ -26,7 +26,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "cfwobject.h" #include "object.h"
void* void*
cfw_new(CFWClass *class, ...) cfw_new(CFWClass *class, ...)

View file

@ -27,7 +27,7 @@
#ifndef __CFWOBJECT_H__ #ifndef __CFWOBJECT_H__
#define __CFWOBJECT_H__ #define __CFWOBJECT_H__
#include "cfwclass.h" #include "class.h"
typedef struct CFWObject { typedef struct CFWObject {
CFWClass *cls; CFWClass *cls;

View file

@ -27,7 +27,7 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include "cfwrange.h" #include "range.h"
cfw_range_t cfw_range_all = { 0, SIZE_MAX }; cfw_range_t cfw_range_all = { 0, SIZE_MAX };

View file

@ -27,8 +27,8 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "cfwobject.h" #include "object.h"
#include "cfwstring.h" #include "string.h"
struct CFWString { struct CFWString {
CFWObject obj; CFWObject obj;

View file

@ -27,7 +27,7 @@
#ifndef __CFWSTRING_H__ #ifndef __CFWSTRING_H__
#define __CFWSTRING_H__ #define __CFWSTRING_H__
#include "cfwclass.h" #include "class.h"
typedef struct CFWString CFWString; typedef struct CFWString CFWString;
extern CFWClass *cfw_string; extern CFWClass *cfw_string;