2 * Simple test case for backup comments
9 extern GSM_Error
SaveTextComment(FILE *file
, unsigned char *comment
);
11 int main(int argc UNUSED
, char **argv UNUSED
)
14 unsigned char buf
[2048];
15 const char src
[] = "Text\n\nwith\n\rseveral\n\nnew\n\nlines.";
16 EncodeUnicode(buf
, src
, sizeof(src
));
17 err
= SaveTextComment(stdout
, buf
);
18 gammu_test_result(err
, "SaveTextComment");