1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
/* melder_writetext.cpp
*
* Copyright (C) 2007-2011 Paul Boersma
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2007/06/02 utf8 <-> wcs
* pb 2007/06/14 separated from melder_strings.c and melder_alloc.c
* pb 2007/06/16 text encoding preferences
* pb 2007/08/12 prefs in wchar_t
* pb 2007/09/04 Melder_malloc rather than malloc in Melder_wcsToAscii (had caused an error in counting memory leaks)
* pb 2007/10/06 Melder_peekWcsToCfstring
* pb 2007/12/09 made MelderFile_writeCharacter compatible with the ISO Latin-1 preference
* pb 2007/12/09 made MelderFile_readText ignore null bytes
* pb 2008/11/05 split off from melder_encodings.c
* pb 2010/03/09 support Unicode values above 0xFFFF
* pb 2011/04/05 C++
*/
#include "melder.h"
#include "Preferences.h"
#include "UnicodeData.h"
#include "abcio.h"
#if defined (macintosh)
#include "macport_on.h"
//#include <Carbon/Carbon.h>
#include "macport_off.h"
#endif
static void Melder_fwriteUnicodeAsUtf8 (unsigned long unicode, FILE *f) {
if (unicode <= 0x00007F) {
#ifdef _WIN32
if (unicode == '\n') fputc (13, f);
#endif
fputc (unicode, f);
} else if (unicode <= 0x0007FF) {
fputc (0xC0 | (unicode >> 6), f);
fputc (0x80 | (unicode & 0x00003F), f);
} else if (unicode <= 0x00FFFF) {
fputc (0xE0 | (unicode >> 12), f);
fputc (0x80 | ((unicode >> 6) & 0x00003F), f);
fputc (0x80 | (unicode & 0x00003F), f);
} else {
fputc (0xF0 | (unicode >> 18), f);
fputc (0x80 | ((unicode >> 12) & 0x00003F), f);
fputc (0x80 | ((unicode >> 6) & 0x00003F), f);
fputc (0x80 | (unicode & 0x00003F), f);
}
}
void Melder_fwriteWcsAsUtf8 (const wchar *ptr, size_t n, FILE *f) {
/*
* Precondition:
* the string's encoding is either UTF-32 or UTF-16.
* Failure:
* if the precondition does not hold, we don't crash,
* but the characters that are written may be incorrect.
*/
for (size_t i = 0; i < n; i ++) {
if (sizeof (wchar_t) == 4) {
/*
* We are likely to be on Macintosh or Linux.
* We assume that the string's encoding is UTF-32.
*/
Melder_fwriteUnicodeAsUtf8 (ptr [i], f);
} else if (sizeof (wchar_t) == 2) {
/*
* We are likely to be on Windows.
* We assume that the string's encoding is UTF-16;
* if it turns out to be otherwise, we write question marks.
*/
unsigned long kar1 = (unsigned short) ptr [i]; // potential intermediate conversion from signed short to unsigned short
if (kar1 < 0xD800) {
Melder_fwriteUnicodeAsUtf8 (kar1, f); // a character from the Basic Multilingual Plane
} else if (kar1 < 0xDC00) {
/*
* We detected a surrogate code point
* and will therefore translate two UTF-16 words into one Unicode supplementary character.
*/
unsigned long kar2 = ptr [++ i];
if (kar2 == 0) { // string exhausted?
// Melder_fatal ("Detected a bare (final) high surrogate in UTF-16.");
Melder_fwriteUnicodeAsUtf8 (UNICODE_REPLACEMENT_CHARACTER, f);
return;
}
if (kar2 >= 0xDC00 && kar2 <= 0xDFFF) {
Melder_fwriteUnicodeAsUtf8 (0x10000 + ((kar1 - 0xD800) << 10) + (kar2 - 0xDC00), f);
} else {
// Melder_fatal ("Detected a bare high surrogate in UTF-16.");
Melder_fwriteUnicodeAsUtf8 (UNICODE_REPLACEMENT_CHARACTER, f);
i --; // try to interpret the next character in the normal way
}
} else if (kar1 < 0xE000) {
// Melder_fatal ("Detected a bare low surrogate in UTF-16.");
Melder_fwriteUnicodeAsUtf8 (UNICODE_REPLACEMENT_CHARACTER, f);
} else if (kar1 <= 0xFFFF) {
Melder_fwriteUnicodeAsUtf8 (kar1, f); // a character from the Basic Multilingual Plane
} else {
Melder_fatal ("Melder_fwriteWcsAsUtf8: unsigned short greater than 0xFFFF: should not occur.");
}
} else {
Melder_fatal ("Melder_fwriteWcsAsUtf8: unsupported size of wide character.");
}
}
}
void MelderFile_writeText (MelderFile file, const wchar *text) {
autofile f = Melder_fopen (file, "wb");
int outputEncoding = Melder_getOutputEncoding ();
if (outputEncoding == kMelder_textOutputEncoding_UTF8) {
Melder_fwriteWcsAsUtf8 (text, wcslen (text), f);
} else if ((outputEncoding == kMelder_textOutputEncoding_ASCII_THEN_UTF16 && Melder_isValidAscii (text)) ||
(outputEncoding == kMelder_textOutputEncoding_ISO_LATIN1_THEN_UTF16 && Melder_isEncodable (text, kMelder_textOutputEncoding_ISO_LATIN1)))
{
#ifdef _WIN32
#define flockfile(f) (void) 0
#define funlockfile(f) (void) 0
#define putc_unlocked putc
#endif
flockfile (f);
size_t n = wcslen (text);
for (size_t i = 0; i < n; i ++) {
unsigned long kar = sizeof (wchar_t) == 2 ? (unsigned short) text [i] : text [i];
#ifdef _WIN32
if (kar == '\n') putc_unlocked (13, f);
#endif
putc_unlocked (kar, f);
}
funlockfile (f);
} else {
binputu2 (0xFEFF, f); // Byte Order Mark
long n = wcslen (text);
for (long i = 0; i < n; i ++) {
if (sizeof (wchar_t) == 2) { // wchar_t is UTF-16?
unsigned short kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
binputu2 (kar, f);
} else { // wchar_t is UTF-32.
unsigned long kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
}
f.close (file);
MelderFile_setMacTypeAndCreator (file, 'TEXT', 0);
}
void MelderFile_appendText (MelderFile file, const wchar *text) {
autofile f;
try {
f.reset (Melder_fopen (file, "rb"));
} catch (MelderError) {
Melder_clearError (); // it's OK if the file didn't exist yet...
MelderFile_writeText (file, text); // because then we just "write"
return;
}
/*
* The file already exists and is open. Determine its type.
*/
int firstByte = fgetc (f), secondByte = fgetc (f);
f.close (file);
int type = 0;
if (firstByte == 0xfe && secondByte == 0xff) {
type = 1; // big-endian 16-bit
} else if (firstByte == 0xff && secondByte == 0xfe) {
type = 2; // little-endian 16-bit
}
if (type == 0) {
int outputEncoding = Melder_getOutputEncoding ();
if (outputEncoding == kMelder_textOutputEncoding_UTF8) { // TODO: read as file's encoding
autofile f = Melder_fopen (file, "ab");
Melder_fwriteWcsAsUtf8 (text, wcslen (text), f);
f.close (file);
} else if ((outputEncoding == kMelder_textOutputEncoding_ASCII_THEN_UTF16 && Melder_isEncodable (text, kMelder_textOutputEncoding_ASCII))
|| (outputEncoding == kMelder_textOutputEncoding_ISO_LATIN1_THEN_UTF16 && Melder_isEncodable (text, kMelder_textOutputEncoding_ISO_LATIN1)))
{
/*
* Append ASCII or ISOLatin1 text to ASCII or ISOLatin1 file.
*/
autofile f = Melder_fopen (file, "ab");
size_t n = wcslen (text);
for (size_t i = 0; i < n; i ++) {
unsigned long kar = sizeof (wchar_t) == 2 ? (unsigned short) text [i] : text [i];
#ifdef _WIN32
if (kar == '\n') fputc (13, f);
#endif
fputc (kar, f);
}
f.close (file);
} else {
/*
* Convert to wide character file.
*/
autostring oldText = MelderFile_readText (file);
autofile f = Melder_fopen (file, "wb");
binputu2 (0xfeff, f);
unsigned long n = wcslen (oldText.peek());
for (unsigned long i = 0; i < n; i ++) {
if (sizeof (wchar_t) == 2) { // wchar_t is UTF-16?
wchar_t kar = oldText [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
binputu2 (kar, f);
} else { // wchar_t is UTF-32.
unsigned long kar = oldText [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
n = wcslen (text);
for (unsigned long i = 0; i < n; i ++) {
if (sizeof (wchar_t) == 2) { // wchar_t is UTF-16?
unsigned short kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
binputu2 (kar, f);
} else { // wchar_t is UTF-32.
unsigned long kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
f.close (file);
}
} else {
autofile f = Melder_fopen (file, "ab");
unsigned long n = wcslen (text);
for (unsigned long i = 0; i < n; i ++) {
if (type == 1) {
if (sizeof (wchar) == 2) { // wchar is UTF-16?
unsigned short kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
binputu2 (kar, f);
} else { // wchar is UTF-32
unsigned long kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2 (13, f);
#endif
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
} else {
if (sizeof (wchar) == 2) { // wchar is UTF-16?
unsigned short kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2LE (13, f);
#endif
binputu2LE (kar, f);
} else { // wchar is UTF-32
unsigned long kar = text [i];
#ifdef _WIN32
if (kar == '\n') binputu2LE (13, f);
#endif
if (kar <= 0xFFFF) {
binputu2LE (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2LE (0xD800 | (kar >> 10), f);
binputu2LE (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2LE (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
}
f.close (file);
}
MelderFile_setMacTypeAndCreator (file, 'TEXT', 0);
}
static void _MelderFile_write (MelderFile file, const wchar_t *string) {
if (string == NULL) return;
unsigned long length = wcslen (string);
FILE *f = file -> filePointer;
if (file -> outputEncoding == kMelder_textOutputEncoding_ASCII || file -> outputEncoding == kMelder_textOutputEncoding_ISO_LATIN1) {
for (unsigned long i = 0; i < length; i ++) {
char kar = string [i];
if (kar == '\n' && file -> requiresCRLF) putc (13, f);
putc (kar, f);
}
} else if (file -> outputEncoding == kMelder_textOutputEncoding_UTF8) {
for (unsigned long i = 0; i < length; i ++) {
unsigned long kar = sizeof (wchar_t) == 2 ? (unsigned short) string [i] : string [i];
if (kar <= 0x00007F) {
if (kar == '\n' && file -> requiresCRLF) putc (13, f);
putc (kar, f);
} else if (kar <= 0x0007FF) {
putc (0xC0 | (kar >> 6), f);
putc (0x80 | (kar & 0x00003F), f);
} else if (kar <= 0x00FFFF) {
if (sizeof (wchar_t) == 2) {
if ((kar & 0xF800) == 0xD800) {
if (kar > 0xDBFF)
Melder_fatal ("Incorrect Unicode value (first surrogate member %lX).", kar);
unsigned long kar2 = (unsigned short) string [++ i]; // crucial cast: prevents sign extension
if (kar2 < 0xDC00 || kar2 > 0xDFFF)
Melder_fatal ("Incorrect Unicode value (second surrogate member %lX).", kar2);
kar = (((kar & 0x3FF) << 10) | (kar2 & 0x3FF)) + 0x10000; // decode UTF-16
putc (0xF0 | (kar >> 18), f);
putc (0x80 | ((kar >> 12) & 0x00003F), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
} else {
putc (0xE0 | (kar >> 12), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
putc (0xE0 | (kar >> 12), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
putc (0xF0 | (kar >> 18), f);
putc (0x80 | ((kar >> 12) & 0x00003F), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
}
} else {
for (unsigned long i = 0; i < length; i ++) {
unsigned long kar = sizeof (wchar_t) == 2 ? (unsigned short) string [i] : string [i];
if (kar == '\n' && file -> requiresCRLF) binputu2 (13, f);
if (sizeof (wchar_t) == 2) { // wchar_t is UTF-16?
binputu2 (kar, f);
} else { // wchar_t is UTF-32.
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
}
}
void MelderFile_writeCharacter (MelderFile file, wchar_t character) {
FILE *f = file -> filePointer;
unsigned long kar = sizeof (wchar_t) == 2 ? (unsigned short) character : character;
if (file -> outputEncoding == kMelder_textOutputEncoding_ASCII || file -> outputEncoding == kMelder_textOutputEncoding_ISO_LATIN1) {
if (kar == '\n' && file -> requiresCRLF) putc (13, f);
putc (kar, f);
} else if (file -> outputEncoding == kMelder_textOutputEncoding_UTF8) {
if (kar <= 0x00007F) {
if (kar == '\n' && file -> requiresCRLF) putc (13, f);
putc (kar, f);
} else if (kar <= 0x0007FF) {
putc (0xC0 | (kar >> 6), f);
putc (0x80 | (kar & 0x00003F), f);
} else if (kar <= 0x00FFFF) {
if (sizeof (wchar_t) == 2) {
if ((kar & 0xF800) == 0xD800) {
static unsigned long buffer; // NOT REENTRANT
if (kar >= 0xD800 && kar <= 0xDBFF) {
buffer = kar;
} else {
kar = (((buffer & 0x3FF) << 10) | (kar & 0x3FF)) + 0x10000; // decode UTF-16
putc (0xF0 | (kar >> 18), f);
putc (0x80 | ((kar >> 12) & 0x00003F), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
putc (0xE0 | (kar >> 12), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
putc (0xE0 | (kar >> 12), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
putc (0xF0 | (kar >> 18), f);
putc (0x80 | ((kar >> 12) & 0x00003F), f);
putc (0x80 | ((kar >> 6) & 0x00003F), f);
putc (0x80 | (kar & 0x00003F), f);
}
} else {
if (kar == '\n' && file -> requiresCRLF) binputu2 (13, f);
if (sizeof (wchar_t) == 2) { // wchar_t is UTF-16?
binputu2 (kar, f);
} else { // wchar_t is UTF-32.
if (kar <= 0xFFFF) {
binputu2 (kar, f);
} else if (kar <= 0x10FFFF) {
kar -= 0x10000;
binputu2 (0xD800 | (kar >> 10), f);
binputu2 (0xDC00 | (kar & 0x3ff), f);
} else {
binputu2 (UNICODE_REPLACEMENT_CHARACTER, f);
}
}
}
}
void MelderFile_write1 (MelderFile file, const wchar_t *s1) {
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
}
void MelderFile_write2 (MelderFile file, const wchar_t *s1, const wchar_t *s2) {
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
}
void MelderFile_write3 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3) {
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
}
void MelderFile_write4 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4) {
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
}
void MelderFile_write5 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4,
const wchar_t *s5)
{
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
_MelderFile_write (file, s5);
}
void MelderFile_write6 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4,
const wchar_t *s5, const wchar_t *s6)
{
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
_MelderFile_write (file, s5);
_MelderFile_write (file, s6);
}
void MelderFile_write7 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4,
const wchar_t *s5, const wchar_t *s6, const wchar_t *s7)
{
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
_MelderFile_write (file, s5);
_MelderFile_write (file, s6);
_MelderFile_write (file, s7);
}
void MelderFile_write8 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4,
const wchar_t *s5, const wchar_t *s6, const wchar_t *s7, const wchar_t *s8)
{
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
_MelderFile_write (file, s5);
_MelderFile_write (file, s6);
_MelderFile_write (file, s7);
_MelderFile_write (file, s8);
}
void MelderFile_write9 (MelderFile file, const wchar_t *s1, const wchar_t *s2, const wchar_t *s3, const wchar_t *s4,
const wchar_t *s5, const wchar_t *s6, const wchar_t *s7, const wchar_t *s8, const wchar_t *s9)
{
if (file -> filePointer == NULL) return;
_MelderFile_write (file, s1);
_MelderFile_write (file, s2);
_MelderFile_write (file, s3);
_MelderFile_write (file, s4);
_MelderFile_write (file, s5);
_MelderFile_write (file, s6);
_MelderFile_write (file, s7);
_MelderFile_write (file, s8);
_MelderFile_write (file, s9);
}
/* End of file melder_writetext.cpp */
|