~ubuntu-branches/debian/stretch/grub2/stretch

« back to all changes in this revision

Viewing changes to include/grub/charset.h

Tags: upstream-1.98+20100705
ImportĀ upstreamĀ versionĀ 1.98+20100705

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 
118
118
int grub_utf8_to_ucs4_alloc (const char *msg, grub_uint32_t **unicode_msg,
119
119
                             grub_uint32_t **last_position);
 
120
void
 
121
grub_ucs4_to_utf8 (grub_uint32_t *src, grub_size_t size,
 
122
                   grub_uint8_t *dest, grub_size_t destsize);
 
123
grub_size_t grub_utf8_to_ucs4 (grub_uint32_t *dest, grub_size_t destsize,
 
124
                               const grub_uint8_t *src, grub_size_t srcsize,
 
125
                               const grub_uint8_t **srcend);
120
126
 
121
127
#endif