summaryrefslogtreecommitdiff
path: root/src/libio/mpu-string.c
blob: 2d33cbf63380507f6c9f23ff14683a9c25b05354 (plain)
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
/***************************************************************
  MPU-STRING.C

       This file contains source code of functions for
       UCS-2 string stream operations.

       PART OF : MPUIO - library .

       USAGE   : Internal only .

       NOTE    : String streams contain UCS-2 characters
                 directly. No UTF-8 conversion is performed.

       Copyright (C) 2000 - 2026  by Andrey V.Kosteltsev.
       All Rights Reserved.
 ***************************************************************/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <libmpuio.h>
#include <mpu-symbols.h>
#include <mpu-libio.h>


/***************************************************************
  Publish a NUL-terminated memory-stream buffer and logical size.
  For fixed caller-owned streams this only maintains the trailing
  NUL; dynamic streams also update the user pointer and length.
 ***************************************************************/
static int __mpu_IO_str_publish_unlocked( mpu_FILE *stream )
{
  __mpu_IO_strfile  *sf;

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf == (__mpu_IO_strfile *)0 )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  if( sf->nul_terminated && sf->buffer != (__mpu_char16_t *)0 &&
      sf->capacity != 0 )
  {
    size_t end = sf->length;
    if( end >= sf->capacity ) end = sf->capacity - 1;
    sf->buffer[end] = (__mpu_char16_t)0;
  }

  if( sf->publish_buffer != (__mpu_char16_t **)0 )
    *sf->publish_buffer = sf->buffer;
  if( sf->publish_size != (size_t *)0 )
    *sf->publish_size = sf->length;

  return( 0 );

} /* End of __mpu_IO_str_publish_unlocked() */


/***************************************************************
  Grow a dynamic UCS-2 memory stream to hold NEED code units.
 ***************************************************************/
static int __mpu_IO_str_grow_unlocked( mpu_FILE *stream, size_t need )
{
  __mpu_IO_strfile  *sf;
  size_t             capacity;
  __mpu_char16_t    *buffer;

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf == (__mpu_IO_strfile *)0 || !sf->dynamic )
  {
    errno = ENOSPC;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  capacity = sf->capacity ? sf->capacity : 16;
  while( capacity < need )
  {
    if( capacity > SIZE_MAX / 2 )
    {
      capacity = need;
      break;
    }
    capacity *= 2;
  }

  if( capacity > SIZE_MAX / sizeof(__mpu_char16_t) )
  {
    errno = EOVERFLOW;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  buffer = (__mpu_char16_t *)realloc( sf->buffer,
                                  capacity * sizeof(__mpu_char16_t) );
  if( buffer == (__mpu_char16_t *)0 )
  {
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  sf->buffer = buffer;
  sf->capacity = capacity;
  return( 0 );

} /* End of __mpu_IO_str_grow_unlocked() */


/***************************************************************
  Reject raw-byte underflow on a UCS-2 string stream.
 ***************************************************************/
static int __mpu_IO_str_underflow_unlocked( mpu_FILE *stream )
{
  stream->_flags |= __MPU_IO_ERR_SEEN;
  errno = EINVAL;
  return( mpu_EOF );

} /* End of __mpu_IO_str_underflow_unlocked() */


/***************************************************************
  Reject raw-byte overflow on a UCS-2 string stream.
 ***************************************************************/
static int __mpu_IO_str_overflow_unlocked( mpu_FILE *stream, int c )
{
  (void)c;
  stream->_flags |= __MPU_IO_ERR_SEEN;
  errno = EINVAL;
  return( mpu_EOF );

} /* End of __mpu_IO_str_overflow_unlocked() */


/***************************************************************
  Synchronize a UCS-2 string stream; no external I/O is required.
 ***************************************************************/
static int __mpu_IO_str_sync_unlocked( mpu_FILE *stream )
{
  return( __mpu_IO_str_publish_unlocked( stream ) );

} /* End of __mpu_IO_str_sync_unlocked() */

/***************************************************************
  Finish string-stream backend state before stream destruction.
 ***************************************************************/
static int __mpu_IO_str_finish_unlocked( mpu_FILE *stream )
{
  __mpu_IO_strfile  *sf;

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf != (__mpu_IO_strfile *)0 )
  {
    if( __mpu_IO_str_publish_unlocked( stream ) == mpu_EOF )
      return( mpu_EOF );
    free( sf );
    stream->_cookie = (void *)0;
  }

  return( 0 );

} /* End of __mpu_IO_str_finish_unlocked() */


/***************************************************************
  Reject stdio byte-buffer configuration on UCS-2 string streams.
 ***************************************************************/
static int __mpu_IO_str_setbuf_unlocked( mpu_FILE *stream,
                                         unsigned char *buf,
                                         int mode, size_t size )
{
  (void)stream;
  (void)buf;
  (void)mode;
  (void)size;
  errno = EINVAL;
  return( -1 );

} /* End of __mpu_IO_str_setbuf_unlocked() */


static int __mpu_IO_str_flush_unlocked( mpu_FILE *stream )
{
   return( __mpu_IO_str_publish_unlocked( stream ) );
} /* End of __mpu_IO_str_flush_unlocked() */

static int __mpu_IO_str_close_unlocked( mpu_FILE *stream )
{
  (void)stream;
  return( 0 );
} /* End of __mpu_IO_str_close_unlocked() */

/***************************************************************
  Reposition a UCS-2 memory stream.  Fixed fmemopen streams may
  seek anywhere representable by their caller-owned buffer, while
  dynamic memstreams may seek beyond the current end.  A later
  write fills any resulting gap with NUL code units.
 ***************************************************************/
static int __mpu_IO_str_seek_unlocked( mpu_FILE *stream,
                                       off_t offset, int whence )
{
  __mpu_IO_strfile  *sf;
  uintmax_t          base;
  uintmax_t          magnitude;
  uintmax_t          position;
  uintmax_t          limit;

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf == (__mpu_IO_strfile *)0 )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( -1 );
  }

  switch( whence )
  {
    case MPU_SEEK_SET: base = 0; break;
    case MPU_SEEK_CUR: base = (uintmax_t)sf->pos; break;
    case MPU_SEEK_END: base = (uintmax_t)sf->length; break;
    default:
      errno = EINVAL;
      return( -1 );
  }

  if( offset < 0 )
  {
    magnitude = (uintmax_t)(-(offset + 1)) + 1;
    if( magnitude > base )
    {
      errno = EINVAL;
      return( -1 );
    }
    position = base - magnitude;
  }
  else
  {
    if( (uintmax_t)offset > (uintmax_t)SIZE_MAX - base )
    {
      errno = EOVERFLOW;
      return( -1 );
    }
    position = base + (uintmax_t)offset;
  }

  if( sf->dynamic )
    limit = (uintmax_t)SIZE_MAX - 1;
  else if( sf->nul_terminated )
    limit = sf->capacity ? (uintmax_t)sf->capacity - 1 : 0;
  else
    limit = (uintmax_t)sf->capacity;

  if( position > limit )
  {
    errno = EINVAL;
    return( -1 );
  }

  sf->pos = (size_t)position;
  stream->_unget_count = 0;
  stream->_flags &= ~(__MPU_IO_READING | __MPU_IO_WRITING |
                      __MPU_IO_EOF_SEEN);

  return( 0 );
} /* End of __mpu_IO_str_seek_unlocked() */

static off_t __mpu_IO_str_tell_unlocked( mpu_FILE *stream )
{
  __mpu_IO_strfile  *sf = (__mpu_IO_strfile *)stream->_cookie;

  if( sf == (__mpu_IO_strfile *)0 )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( (off_t)-1 );
  }

  return( (off_t)sf->pos );
} /* End of __mpu_IO_str_tell_unlocked() */


/***************************************************************
  Seek a UCS-2 string stream and return the resulting position.
 ***************************************************************/
static off_t __mpu_IO_str_seekoff_unlocked( mpu_FILE *stream,
                                             off_t offset, int whence )
{
  if( __mpu_IO_str_seek_unlocked( stream, offset, whence ) != 0 )
    return( (off_t)-1 );
  return( __mpu_IO_str_tell_unlocked( stream ) );

} /* End of __mpu_IO_str_seekoff_unlocked() */


/***************************************************************
  Seek a UCS-2 string stream to an absolute position.
 ***************************************************************/
static off_t __mpu_IO_str_seekpos_unlocked( mpu_FILE *stream,
                                             off_t position )
{
  return( __mpu_IO_str_seekoff_unlocked( stream, position,
                                         MPU_SEEK_SET ) );

} /* End of __mpu_IO_str_seekpos_unlocked() */


static int __mpu_IO_str_get_char_unlocked( mpu_FILE *stream,
                                           __mpu_char16_t *wc )
{
  __mpu_IO_strfile  *sf;

  if( stream->_flags & __MPU_IO_NO_READS )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf == (__mpu_IO_strfile *)0 )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  /* Keep native UCS-2 streams in the same directional-state model
     as descriptor and cookie streams. */
  stream->_flags &= ~__MPU_IO_WRITING;
  stream->_flags |= __MPU_IO_READING;

  if( sf->pos >= sf->length )
  {
    stream->_flags |= __MPU_IO_EOF_SEEN;
    return( mpu_EOF );
  }

  *wc = sf->buffer[sf->pos++];
  return( 0 );
} /* End of __mpu_IO_str_get_char_unlocked() */

static int __mpu_IO_str_put_char_unlocked( __mpu_char16_t wc,
                                           mpu_FILE *stream )
{
  __mpu_IO_strfile  *sf;

  if( stream->_flags & __MPU_IO_NO_WRITES )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  if( wc >= (__mpu_char16_t)0xd800 && wc <= (__mpu_char16_t)0xdfff )
  {
    errno = EILSEQ;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  sf = (__mpu_IO_strfile *)stream->_cookie;
  if( sf == (__mpu_IO_strfile *)0 )
  {
    errno = EBADF;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  /* A successful text-output attempt establishes writing direction. */
  stream->_flags &= ~__MPU_IO_READING;
  stream->_flags |= __MPU_IO_WRITING;

  if( (stream->_flags & __MPU_IO_COUNTED) && sf->pos >= sf->capacity )
  {
    ++sf->pos;
    if( sf->pos > sf->length ) sf->length = sf->pos;
    return( 0 );
  }

  /* Append-mode fmemopen writes are always placed at the current
     logical end, even after a successful seek changes the read position. */
  if( stream->_flags & __MPU_IO_APPEND )
    sf->pos = sf->length;

  if( sf->nul_terminated )
  {
    if( sf->dynamic )
    {
      if( sf->pos > SIZE_MAX - 2 ||
          __mpu_IO_str_grow_unlocked( stream, sf->pos + 2 ) == mpu_EOF )
        return( mpu_EOF );
    }
    else if( sf->capacity == 0 || sf->pos + 1 >= sf->capacity )
    {
      errno = ENOSPC;
      stream->_flags |= __MPU_IO_ERR_SEEN;
      return( mpu_EOF );
    }
  }
  else if( sf->pos >= sf->capacity )
  {
    errno = ENOSPC;
    stream->_flags |= __MPU_IO_ERR_SEEN;
    return( mpu_EOF );
  }

  /* A write after seeking beyond the logical end creates a sparse
     text gap.  Materialize it as NUL UCS-2 code units, matching the
     byte-zero gap semantics of libc open_memstream(). */
  if( sf->pos > sf->length && sf->buffer != (__mpu_char16_t *)0 )
  {
    size_t i;
    for( i = sf->length; i < sf->pos; ++i )
      sf->buffer[i] = (__mpu_char16_t)0;
  }

  if( sf->buffer != (__mpu_char16_t *)0 )
    sf->buffer[sf->pos] = wc;

  ++sf->pos;
  if( sf->pos > sf->length ) sf->length = sf->pos;
  if( sf->nul_terminated && sf->buffer != (__mpu_char16_t *)0 )
    sf->buffer[sf->length] = (__mpu_char16_t)0;

  return( 0 );
} /* End of __mpu_IO_str_put_char_unlocked() */

static int __mpu_IO_str_get_byte_unlocked( mpu_FILE *stream )
{
  stream->_flags |= __MPU_IO_ERR_SEEN;
  errno = EINVAL;
  return( mpu_EOF );
} /* End of __mpu_IO_str_get_byte_unlocked() */

static int __mpu_IO_str_put_byte_unlocked( unsigned char c,
                                           mpu_FILE *stream )
{
  (void)c;
  stream->_flags |= __MPU_IO_ERR_SEEN;
  errno = EINVAL;
  return( mpu_EOF );
} /* End of __mpu_IO_str_put_byte_unlocked() */

mpu_FILE *__mpu_IO_str_open( __mpu_char16_t *buffer,
                             size_t capacity,
                             size_t length,
                             unsigned int flags )
{
  struct __mpu_IO_FILE_plus  *plus;
  mpu_FILE                   *stream;
  __mpu_IO_strfile           *sf;

  if( (buffer == (__mpu_char16_t *)0 && capacity != 0) ||
      length > capacity )
  {
    errno = EINVAL;
    return( (mpu_FILE *)0 );
  }

  plus = (struct __mpu_IO_FILE_plus *)calloc( 1, sizeof(*plus) );
  if( plus == (struct __mpu_IO_FILE_plus *)0 )
    return( (mpu_FILE *)0 );

  stream = &plus->file;
  plus->vtable = &__mpu_IO_str_jumps;

  sf = (__mpu_IO_strfile *)calloc( 1, sizeof(__mpu_IO_strfile) );
  if( sf == (__mpu_IO_strfile *)0 )
  {
    free( plus );
    return( (mpu_FILE *)0 );
  }

  sf->buffer   = buffer;
  sf->capacity = capacity;
  sf->length   = length;
  sf->pos      = 0;

  stream->_magic  = __MPU_IO_MAGIC;
  stream->_flags  = flags | __MPU_IO_STRING | __MPU_IO_USER_BUF;
  stream->_fileno = -1;
  stream->_cookie = sf;

  {
    int  lock_error = __mpu_IO_lock_init( &stream->_lock );

    if( lock_error != 0 )
    {
      free( sf );
      free( plus );
      errno = lock_error;
      return( (mpu_FILE *)0 );
    }
  }

  __mpu_IO_link_in( stream );
  return( stream );
} /* End of __mpu_IO_str_open() */

mpu_FILE *__mpu_IO_str_open_readonly( const __mpu_char16_t *buffer,
                                      size_t length )
{
  return( __mpu_IO_str_open( (__mpu_char16_t *)buffer, length, length,
                              __MPU_IO_NO_WRITES | __MPU_IO_NOLIST ) );
} /* End of __mpu_IO_str_open_readonly() */

mpu_FILE *__mpu_IO_str_open_counted( __mpu_char16_t *buffer,
                                    size_t capacity )
{
  mpu_FILE  *stream;

  stream = __mpu_IO_str_open( buffer, capacity, 0,
                              __MPU_IO_COUNTED | __MPU_IO_NOLIST );

  return( stream );

} /* End of __mpu_IO_str_open_counted() */


/***************************************************************
  Return the bounded UCS-2 string length within CAPACITY code
  units.
 ***************************************************************/
static size_t __mpu_IO_strnlen( const __mpu_char16_t *buffer, size_t capacity )
{
  size_t  n;

  for( n = 0; n < capacity; ++n )
    if( buffer[n] == (__mpu_char16_t)0 ) break;

  return( n );

} /* End of __mpu_IO_strnlen() */


/***************************************************************
  Open caller-owned UCS-2 memory as a text stream.  SIZE is the
  number of __mpu_char16_t code units including trailing-NUL
  space.
 ***************************************************************/
mpu_FILE *mpu_fmemopen( __mpu_char16_t *buffer, size_t size,
                        const char *mode )
{
  unsigned int      flags;
  int               oflags;
  mpu_FILE         *stream;
  __mpu_IO_strfile *sf;
  size_t            length;

  if( buffer == (__mpu_char16_t *)0 || size == 0 )
  {
    errno = EINVAL;
    return( (mpu_FILE *)0 );
  }

  if( __mpu_IO_parse_mode( mode, &flags, &oflags, 0 ) < 0 )
    return( (mpu_FILE *)0 );
  (void)oflags;

  length = __mpu_IO_strnlen( buffer, size );
  if( mode[0] == 'w' )
  {
    length = 0;
    buffer[0] = (__mpu_char16_t)0;
  }

  stream = __mpu_IO_str_open( buffer, size, length, flags );
  if( stream == (mpu_FILE *)0 )
    return( (mpu_FILE *)0 );

  sf = (__mpu_IO_strfile *)stream->_cookie;
  sf->nul_terminated = 1;
  if( mode[0] == 'a' ) sf->pos = sf->length;

  return( stream );

} /* End of mpu_fmemopen() */


/***************************************************************
  Open a dynamically growing UCS-2 output memory stream with
  additional internal FLAGS controlling stream-list membership.
 ***************************************************************/
mpu_FILE *__mpu_IO_str_open_memstream( __mpu_char16_t **buffer, size_t *size,
                                       unsigned int flags )
{
  mpu_FILE         *stream;
  __mpu_IO_strfile *sf;
  __mpu_char16_t   *storage;

  if( buffer == (__mpu_char16_t **)0 || size == (size_t *)0 )
  {
    errno = EINVAL;
    return( (mpu_FILE *)0 );
  }

  storage = (__mpu_char16_t *)calloc( 16, sizeof(__mpu_char16_t) );
  if( storage == (__mpu_char16_t *)0 )
    return( (mpu_FILE *)0 );

  stream = __mpu_IO_str_open( storage, 16, 0,
                              __MPU_IO_NO_READS | __MPU_IO_MEMSTREAM |
                              flags );
  if( stream == (mpu_FILE *)0 )
  {
    free( storage );
    return( (mpu_FILE *)0 );
  }

  sf = (__mpu_IO_strfile *)stream->_cookie;
  sf->nul_terminated = 1;
  sf->dynamic = 1;
  sf->publish_buffer = buffer;
  sf->publish_size = size;
  *buffer = storage;
  *size = 0;

  return( stream );

} /* End of __mpu_IO_str_open_memstream() */


/***************************************************************
  Open a public dynamically growing UCS-2 output memory stream.
  *BUFFER and *SIZE are published by fflush() and fclose().
 ***************************************************************/
mpu_FILE *mpu_open_memstream( __mpu_char16_t **buffer, size_t *size )
{
  return( __mpu_IO_str_open_memstream( buffer, size, 0 ) );

} /* End of mpu_open_memstream() */


const struct __mpu_IO_jump_t  __mpu_IO_str_jumps =
{
  .finish    = __mpu_IO_str_finish_unlocked,
  .underflow = __mpu_IO_str_underflow_unlocked,
  .overflow  = __mpu_IO_str_overflow_unlocked,
  .sync      = __mpu_IO_str_sync_unlocked,
  .setbuf    = __mpu_IO_str_setbuf_unlocked,
  .seekoff   = __mpu_IO_str_seekoff_unlocked,
  .seekpos   = __mpu_IO_str_seekpos_unlocked,
  .flush     = __mpu_IO_str_flush_unlocked,
  .close    = __mpu_IO_str_close_unlocked,
  .seek     = __mpu_IO_str_seek_unlocked,
  .tell     = __mpu_IO_str_tell_unlocked,
  .get_byte = __mpu_IO_str_get_byte_unlocked,
  .put_byte = __mpu_IO_str_put_byte_unlocked,
  .xsgetn   = (size_t (*)(mpu_FILE *, void *, size_t))0,
  .xsputn   = (size_t (*)(mpu_FILE *, const void *, size_t))0,
  .get_char = __mpu_IO_str_get_char_unlocked,
  .put_char = __mpu_IO_str_put_char_unlocked
};


/***************************************************************
  Hide internal symbols:
 ***************************************************************/

__mpu_hidden_decl(__mpu_IO_str_jumps);
__mpu_hidden_decl(__mpu_IO_str_open_memstream);
__mpu_hidden_decl(__mpu_IO_str_open);
__mpu_hidden_decl(__mpu_IO_str_open_counted);
__mpu_hidden_decl(__mpu_IO_str_open_readonly);

/*
  End of hide internal symbols.
 ***************************************************************/

/* End of mpu-string.c */