A 3d fps game made in OpenGL
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef ARRAY_STR_H
|
|
#define ARRAY_STR_H
|
|
|
|
// String type based on array that is conveniently resizable and
|
|
// converatble to/from other types.
|
|
|
|
//char* str_new(const char* str);
|
|
//size_t str_len(const char* str);
|
|
|
|
#endif
|
|
|