Remove cfw prefix from files.
This commit is contained in:
parent
34c8a7713a
commit
22f8a535f3
12 changed files with 19 additions and 19 deletions
10
src/Makefile
10
src/Makefile
|
@ -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
|
||||
|
|
|
@ -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;
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef __CFWARRAY_H__
|
||||
#define __CFWARRAY_H__
|
||||
|
||||
#include "cfwclass.h"
|
||||
#include "class.h"
|
||||
|
||||
typedef struct CFWArray CFWArray;
|
||||
extern CFWClass *cfw_array;
|
|
@ -24,7 +24,7 @@
|
|||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "cfwclass.h"
|
||||
#include "class.h"
|
||||
|
||||
const char*
|
||||
cfw_class_name(CFWClass *cls)
|
|
@ -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
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "cfwobject.h"
|
||||
#include "object.h"
|
||||
|
||||
void*
|
||||
cfw_new(CFWClass *class, ...)
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef __CFWOBJECT_H__
|
||||
#define __CFWOBJECT_H__
|
||||
|
||||
#include "cfwclass.h"
|
||||
#include "class.h"
|
||||
|
||||
typedef struct CFWObject {
|
||||
CFWClass *cls;
|
|
@ -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 };
|
||||
|
|
@ -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;
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef __CFWSTRING_H__
|
||||
#define __CFWSTRING_H__
|
||||
|
||||
#include "cfwclass.h"
|
||||
#include "class.h"
|
||||
|
||||
typedef struct CFWString CFWString;
|
||||
extern CFWClass *cfw_string;
|
Loading…
Add table
Add a link
Reference in a new issue