12 lines
156 B
C
12 lines
156 B
C
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "print.h"
|
|
|
|
void string_print(
|
|
struct string* this)
|
|
{
|
|
fwrite(this->data, 1, this->len, stdout);
|
|
}
|
|
|