Unify the library on an akgl_ namespace
This commit is contained in:
@@ -4,14 +4,14 @@
|
||||
#include "string.h"
|
||||
#include <akerror.h>
|
||||
|
||||
#define MAX_STRING_LENGTH 256
|
||||
#define AKGL_MAX_STRING_LENGTH 256
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int refcount;
|
||||
char data[MAX_STRING_LENGTH];
|
||||
} string;
|
||||
char data[AKGL_MAX_STRING_LENGTH];
|
||||
} akgl_String;
|
||||
|
||||
akerr_ErrorContext AKERR_NOIGNORE *string_initialize(string *obj, char *init);
|
||||
akerr_ErrorContext AKERR_NOIGNORE *akgl_string_initialize(akgl_String *obj, char *init);
|
||||
|
||||
#endif //_STRING_H_
|
||||
|
||||
Reference in New Issue
Block a user