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_MINOR = 0
SRCS = cfwarray.c \
cfwclass.c \
cfwobject.c \
cfwrange.c \
cfwstring.c
SRCS = array.c \
class.c \
object.c \
range.c \
string.c
INCLUDES = ${SRCS:.c=.h} \
corefw.h

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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