*
* The f_string_static_t type should never be directly allocated or deallocated.
*
- * A special macro_f_string_static_t_initialize() is provided for the special purpose of easily initialize a static string.
+ * A special macro_f_string_static_t_initialize() is provided for the special purpose of easily initialize a static string with an identical used and size.
+ * A special macro_f_string_static_t_initialize2() is provided for the special purpose of easily initialize a static string.
*
* string: The string.
* size: Total amount of space available.
string_static.used = 0;
#define macro_f_string_static_t_initialize(string, length) { string, length, length }
+ #define macro_f_string_static_t_initialize2(string, size, used) { string, size, used }
#endif // _di_f_string_static_t_
/**