strutil8bit.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. /*
  2. 8bit strings utilities
  3. Copyright (C) 2007-2024
  4. Free Software Foundation, Inc.
  5. Written by:
  6. Rostislav Benes, 2007
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software: you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation, either version 3 of the License,
  11. or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <config.h>
  20. #include <ctype.h>
  21. #include <stdlib.h>
  22. #include "lib/global.h"
  23. #include "lib/strutil.h"
  24. /* Functions for singlebyte encodings, all characters have width 1
  25. * using standard system functions.
  26. * There are only small differences between functions in strutil8bit.c
  27. * and strutilascii.c.
  28. */
  29. /*** global variables ****************************************************************************/
  30. /*** file scope macro definitions ****************************************************************/
  31. /*
  32. * Inlines to equalize 'char' signedness for single 'char' encodings.
  33. * Instead of writing
  34. * isspace ((unsigned char) c);
  35. * you can write
  36. * char_isspace (c);
  37. */
  38. #define DECLARE_CTYPE_WRAPPER(func_name) \
  39. static inline int char_##func_name(char c) \
  40. { \
  41. return func_name((int)(unsigned char)c); \
  42. }
  43. /*** file scope type declarations ****************************************************************/
  44. /*** forward declarations (file scope functions) *************************************************/
  45. /*** file scope variables ************************************************************************/
  46. static const char replch = '?';
  47. /* --------------------------------------------------------------------------------------------- */
  48. /*** file scope functions ************************************************************************/
  49. /* --------------------------------------------------------------------------------------------- */
  50. /* *INDENT-OFF* */
  51. DECLARE_CTYPE_WRAPPER (isalnum)
  52. DECLARE_CTYPE_WRAPPER (isdigit)
  53. DECLARE_CTYPE_WRAPPER (isprint)
  54. DECLARE_CTYPE_WRAPPER (ispunct)
  55. DECLARE_CTYPE_WRAPPER (isspace)
  56. DECLARE_CTYPE_WRAPPER (toupper)
  57. DECLARE_CTYPE_WRAPPER (tolower)
  58. /* *INDENT-ON* */
  59. /* --------------------------------------------------------------------------------------------- */
  60. static void
  61. str_8bit_insert_replace_char (GString *buffer)
  62. {
  63. g_string_append_c (buffer, replch);
  64. }
  65. /* --------------------------------------------------------------------------------------------- */
  66. static gboolean
  67. str_8bit_is_valid_string (const char *text)
  68. {
  69. (void) text;
  70. return TRUE;
  71. }
  72. /* --------------------------------------------------------------------------------------------- */
  73. static int
  74. str_8bit_is_valid_char (const char *ch, size_t size)
  75. {
  76. (void) ch;
  77. (void) size;
  78. return 1;
  79. }
  80. /* --------------------------------------------------------------------------------------------- */
  81. static void
  82. str_8bit_cnext_char (const char **text)
  83. {
  84. (*text)++;
  85. }
  86. /* --------------------------------------------------------------------------------------------- */
  87. static void
  88. str_8bit_cprev_char (const char **text)
  89. {
  90. (*text)--;
  91. }
  92. /* --------------------------------------------------------------------------------------------- */
  93. static int
  94. str_8bit_cnext_noncomb_char (const char **text)
  95. {
  96. if (*text[0] == '\0')
  97. return 0;
  98. (*text)++;
  99. return 1;
  100. }
  101. /* --------------------------------------------------------------------------------------------- */
  102. static int
  103. str_8bit_cprev_noncomb_char (const char **text, const char *begin)
  104. {
  105. if ((*text) == begin)
  106. return 0;
  107. (*text)--;
  108. return 1;
  109. }
  110. /* --------------------------------------------------------------------------------------------- */
  111. static gboolean
  112. str_8bit_isspace (const char *text)
  113. {
  114. return char_isspace (text[0]) != 0;
  115. }
  116. /* --------------------------------------------------------------------------------------------- */
  117. static gboolean
  118. str_8bit_ispunct (const char *text)
  119. {
  120. return char_ispunct (text[0]) != 0;
  121. }
  122. /* --------------------------------------------------------------------------------------------- */
  123. static gboolean
  124. str_8bit_isalnum (const char *text)
  125. {
  126. return char_isalnum (text[0]) != 0;
  127. }
  128. /* --------------------------------------------------------------------------------------------- */
  129. static gboolean
  130. str_8bit_isdigit (const char *text)
  131. {
  132. return char_isdigit (text[0]) != 0;
  133. }
  134. /* --------------------------------------------------------------------------------------------- */
  135. static gboolean
  136. str_8bit_isprint (const char *text)
  137. {
  138. return char_isprint (text[0]) != 0;
  139. }
  140. /* --------------------------------------------------------------------------------------------- */
  141. static gboolean
  142. str_8bit_iscombiningmark (const char *text)
  143. {
  144. (void) text;
  145. return FALSE;
  146. }
  147. /* --------------------------------------------------------------------------------------------- */
  148. static int
  149. str_8bit_toupper (const char *text, char **out, size_t *remain)
  150. {
  151. if (*remain <= 1)
  152. return FALSE;
  153. (*out)[0] = char_toupper (text[0]);
  154. (*out)++;
  155. (*remain)--;
  156. return TRUE;
  157. }
  158. /* --------------------------------------------------------------------------------------------- */
  159. static gboolean
  160. str_8bit_tolower (const char *text, char **out, size_t *remain)
  161. {
  162. if (*remain <= 1)
  163. return FALSE;
  164. (*out)[0] = char_tolower (text[0]);
  165. (*out)++;
  166. (*remain)--;
  167. return TRUE;
  168. }
  169. /* --------------------------------------------------------------------------------------------- */
  170. static int
  171. str_8bit_length (const char *text)
  172. {
  173. return strlen (text);
  174. }
  175. /* --------------------------------------------------------------------------------------------- */
  176. static int
  177. str_8bit_length2 (const char *text, int size)
  178. {
  179. return (size >= 0) ? MIN (strlen (text), (gsize) size) : strlen (text);
  180. }
  181. /* --------------------------------------------------------------------------------------------- */
  182. static gchar *
  183. str_8bit_conv_gerror_message (GError *mcerror, const char *def_msg)
  184. {
  185. GIConv conv;
  186. gchar *ret;
  187. /* glib messages are in UTF-8 charset */
  188. conv = str_crt_conv_from ("UTF-8");
  189. if (conv == INVALID_CONV)
  190. ret = g_strdup (def_msg != NULL ? def_msg : "");
  191. else
  192. {
  193. GString *buf;
  194. buf = g_string_new ("");
  195. if (str_convert (conv, mcerror->message, buf) != ESTR_FAILURE)
  196. ret = g_string_free (buf, FALSE);
  197. else
  198. {
  199. ret = g_strdup (def_msg != NULL ? def_msg : "");
  200. g_string_free (buf, TRUE);
  201. }
  202. str_close_conv (conv);
  203. }
  204. return ret;
  205. }
  206. /* --------------------------------------------------------------------------------------------- */
  207. static estr_t
  208. str_8bit_vfs_convert_to (GIConv coder, const char *string, int size, GString *buffer)
  209. {
  210. estr_t result = ESTR_SUCCESS;
  211. if (coder == str_cnv_not_convert)
  212. g_string_append_len (buffer, string, size);
  213. else
  214. result = str_nconvert (coder, string, size, buffer);
  215. return result;
  216. }
  217. /* --------------------------------------------------------------------------------------------- */
  218. static const char *
  219. str_8bit_term_form (const char *text)
  220. {
  221. static char result[BUF_MEDIUM];
  222. char *actual;
  223. size_t remain;
  224. size_t length;
  225. size_t pos = 0;
  226. actual = result;
  227. remain = sizeof (result);
  228. length = strlen (text);
  229. for (; pos < length && remain > 1; pos++, actual++, remain--)
  230. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  231. actual[0] = '\0';
  232. return result;
  233. }
  234. /* --------------------------------------------------------------------------------------------- */
  235. static const char *
  236. str_8bit_fit_to_term (const char *text, int width, align_crt_t just_mode)
  237. {
  238. static char result[BUF_MEDIUM];
  239. char *actual;
  240. size_t remain;
  241. int ident = 0;
  242. size_t length;
  243. size_t pos = 0;
  244. length = strlen (text);
  245. actual = result;
  246. remain = sizeof (result);
  247. if ((int) length <= width)
  248. {
  249. switch (HIDE_FIT (just_mode))
  250. {
  251. case J_CENTER_LEFT:
  252. case J_CENTER:
  253. ident = (width - length) / 2;
  254. break;
  255. case J_RIGHT:
  256. ident = width - length;
  257. break;
  258. default:
  259. break;
  260. }
  261. if ((int) remain <= ident)
  262. goto finally;
  263. memset (actual, ' ', ident);
  264. actual += ident;
  265. remain -= ident;
  266. for (; pos < length && remain > 1; pos++, actual++, remain--)
  267. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  268. if (width - length - ident > 0)
  269. {
  270. if (remain <= width - length - ident)
  271. goto finally;
  272. memset (actual, ' ', width - length - ident);
  273. actual += width - length - ident;
  274. }
  275. }
  276. else if (IS_FIT (just_mode))
  277. {
  278. for (; pos + 1 <= (gsize) width / 2 && remain > 1; actual++, pos++, remain--)
  279. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  280. if (remain <= 1)
  281. goto finally;
  282. actual[0] = '~';
  283. actual++;
  284. remain--;
  285. pos += length - width + 1;
  286. for (; pos < length && remain > 1; pos++, actual++, remain--)
  287. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  288. }
  289. else
  290. {
  291. switch (HIDE_FIT (just_mode))
  292. {
  293. case J_CENTER:
  294. ident = (length - width) / 2;
  295. break;
  296. case J_RIGHT:
  297. ident = length - width;
  298. break;
  299. default:
  300. break;
  301. }
  302. pos += ident;
  303. for (; pos < (gsize) (ident + width) && remain > 1; pos++, actual++, remain--)
  304. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  305. }
  306. finally:
  307. if (actual >= result + sizeof (result))
  308. actual = result + sizeof (result) - 1;
  309. actual[0] = '\0';
  310. return result;
  311. }
  312. /* --------------------------------------------------------------------------------------------- */
  313. static const char *
  314. str_8bit_term_trim (const char *text, int width)
  315. {
  316. static char result[BUF_MEDIUM];
  317. size_t remain;
  318. char *actual;
  319. size_t length;
  320. length = strlen (text);
  321. actual = result;
  322. remain = sizeof (result);
  323. if (width > 0)
  324. {
  325. size_t pos;
  326. if (width >= (int) length)
  327. {
  328. for (pos = 0; pos < length && remain > 1; pos++, actual++, remain--)
  329. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  330. }
  331. else if (width <= 3)
  332. {
  333. memset (actual, '.', width);
  334. actual += width;
  335. }
  336. else
  337. {
  338. memset (actual, '.', 3);
  339. actual += 3;
  340. remain -= 3;
  341. for (pos = length - width + 3; pos < length && remain > 1; pos++, actual++, remain--)
  342. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  343. }
  344. }
  345. actual[0] = '\0';
  346. return result;
  347. }
  348. /* --------------------------------------------------------------------------------------------- */
  349. static int
  350. str_8bit_term_width2 (const char *text, size_t length)
  351. {
  352. return (length != (size_t) (-1)) ? MIN (strlen (text), length) : strlen (text);
  353. }
  354. /* --------------------------------------------------------------------------------------------- */
  355. static int
  356. str_8bit_term_width1 (const char *text)
  357. {
  358. return str_8bit_term_width2 (text, (size_t) (-1));
  359. }
  360. /* --------------------------------------------------------------------------------------------- */
  361. static int
  362. str_8bit_term_char_width (const char *text)
  363. {
  364. (void) text;
  365. return 1;
  366. }
  367. /* --------------------------------------------------------------------------------------------- */
  368. static const char *
  369. str_8bit_term_substring (const char *text, int start, int width)
  370. {
  371. static char result[BUF_MEDIUM];
  372. size_t remain;
  373. char *actual;
  374. size_t length;
  375. actual = result;
  376. remain = sizeof (result);
  377. length = strlen (text);
  378. if (start < (int) length)
  379. {
  380. size_t pos;
  381. for (pos = start; pos < length && width > 0 && remain > 1;
  382. pos++, width--, actual++, remain--)
  383. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  384. }
  385. for (; width > 0 && remain > 1; actual++, remain--, width--)
  386. actual[0] = ' ';
  387. actual[0] = '\0';
  388. return result;
  389. }
  390. /* --------------------------------------------------------------------------------------------- */
  391. static const char *
  392. str_8bit_trunc (const char *text, int width)
  393. {
  394. static char result[MC_MAXPATHLEN];
  395. int remain;
  396. char *actual;
  397. size_t pos = 0;
  398. size_t length;
  399. actual = result;
  400. remain = sizeof (result);
  401. length = strlen (text);
  402. if ((int) length > width)
  403. {
  404. for (; pos + 1 <= (gsize) width / 2 && remain > 1; actual++, pos++, remain--)
  405. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  406. if (remain <= 1)
  407. goto finally;
  408. actual[0] = '~';
  409. actual++;
  410. remain--;
  411. pos += length - width + 1;
  412. for (; pos < length && remain > 1; pos++, actual++, remain--)
  413. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  414. }
  415. else
  416. {
  417. for (; pos < length && remain > 1; pos++, actual++, remain--)
  418. actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
  419. }
  420. finally:
  421. actual[0] = '\0';
  422. return result;
  423. }
  424. /* --------------------------------------------------------------------------------------------- */
  425. static int
  426. str_8bit_offset_to_pos (const char *text, size_t length)
  427. {
  428. (void) text;
  429. return (int) length;
  430. }
  431. /* --------------------------------------------------------------------------------------------- */
  432. static int
  433. str_8bit_column_to_pos (const char *text, size_t pos)
  434. {
  435. (void) text;
  436. return (int) pos;
  437. }
  438. /* --------------------------------------------------------------------------------------------- */
  439. static char *
  440. str_8bit_create_search_needle (const char *needle, gboolean case_sen)
  441. {
  442. (void) case_sen;
  443. return (char *) needle;
  444. }
  445. /* --------------------------------------------------------------------------------------------- */
  446. static void
  447. str_8bit_release_search_needle (char *needle, gboolean case_sen)
  448. {
  449. (void) case_sen;
  450. (void) needle;
  451. }
  452. /* --------------------------------------------------------------------------------------------- */
  453. static char *
  454. str_8bit_strdown (const char *str)
  455. {
  456. char *rets, *p;
  457. if (str == NULL)
  458. return NULL;
  459. rets = g_strdup (str);
  460. for (p = rets; *p != '\0'; p++)
  461. *p = char_tolower (*p);
  462. return rets;
  463. }
  464. /* --------------------------------------------------------------------------------------------- */
  465. static const char *
  466. str_8bit_search_first (const char *text, const char *search, gboolean case_sen)
  467. {
  468. char *fold_text;
  469. char *fold_search;
  470. const char *match;
  471. fold_text = case_sen ? (char *) text : str_8bit_strdown (text);
  472. fold_search = case_sen ? (char *) search : str_8bit_strdown (search);
  473. match = g_strstr_len (fold_text, -1, fold_search);
  474. if (match != NULL)
  475. {
  476. size_t offset;
  477. offset = match - fold_text;
  478. match = text + offset;
  479. }
  480. if (!case_sen)
  481. {
  482. g_free (fold_text);
  483. g_free (fold_search);
  484. }
  485. return match;
  486. }
  487. /* --------------------------------------------------------------------------------------------- */
  488. static const char *
  489. str_8bit_search_last (const char *text, const char *search, gboolean case_sen)
  490. {
  491. char *fold_text;
  492. char *fold_search;
  493. const char *match;
  494. fold_text = case_sen ? (char *) text : str_8bit_strdown (text);
  495. fold_search = case_sen ? (char *) search : str_8bit_strdown (search);
  496. match = g_strrstr_len (fold_text, -1, fold_search);
  497. if (match != NULL)
  498. {
  499. size_t offset;
  500. offset = match - fold_text;
  501. match = text + offset;
  502. }
  503. if (!case_sen)
  504. {
  505. g_free (fold_text);
  506. g_free (fold_search);
  507. }
  508. return match;
  509. }
  510. /* --------------------------------------------------------------------------------------------- */
  511. static int
  512. str_8bit_compare (const char *t1, const char *t2)
  513. {
  514. return strcmp (t1, t2);
  515. }
  516. /* --------------------------------------------------------------------------------------------- */
  517. static int
  518. str_8bit_ncompare (const char *t1, const char *t2)
  519. {
  520. return strncmp (t1, t2, MIN (strlen (t1), strlen (t2)));
  521. }
  522. /* --------------------------------------------------------------------------------------------- */
  523. static int
  524. str_8bit_casecmp (const char *s1, const char *s2)
  525. {
  526. /* code from GLib */
  527. #ifdef HAVE_STRCASECMP
  528. g_return_val_if_fail (s1 != NULL, 0);
  529. g_return_val_if_fail (s2 != NULL, 0);
  530. return strcasecmp (s1, s2);
  531. #else
  532. g_return_val_if_fail (s1 != NULL, 0);
  533. g_return_val_if_fail (s2 != NULL, 0);
  534. for (; *s1 != '\0' && *s2 != '\0'; s1++, s2++)
  535. {
  536. gint c1, c2;
  537. /* According to A. Cox, some platforms have islower's that
  538. * don't work right on non-uppercase
  539. */
  540. c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
  541. c2 = isupper ((guchar) * s2) ? tolower ((guchar) * s2) : *s2;
  542. if (c1 != c2)
  543. return (c1 - c2);
  544. }
  545. return (((gint) (guchar) * s1) - ((gint) (guchar) * s2));
  546. #endif
  547. }
  548. /* --------------------------------------------------------------------------------------------- */
  549. static int
  550. str_8bit_ncasecmp (const char *s1, const char *s2)
  551. {
  552. size_t n;
  553. g_return_val_if_fail (s1 != NULL, 0);
  554. g_return_val_if_fail (s2 != NULL, 0);
  555. n = MIN (strlen (s1), strlen (s2));
  556. /* code from GLib */
  557. #ifdef HAVE_STRNCASECMP
  558. return strncasecmp (s1, s2, n);
  559. #else
  560. for (; *s1 != '\0' && *s2 != '\0'; s1++, s2++)
  561. {
  562. gint c1, c2;
  563. n--;
  564. /* According to A. Cox, some platforms have islower's that
  565. * don't work right on non-uppercase
  566. */
  567. c1 = isupper ((guchar) * s1) ? tolower ((guchar) * s1) : *s1;
  568. c2 = isupper ((guchar) * s2) ? tolower ((guchar) * s2) : *s2;
  569. if (c1 != c2)
  570. return (c1 - c2);
  571. }
  572. if (n == 0)
  573. return 0;
  574. return (((gint) (guchar) * s1) - ((gint) (guchar) * s2));
  575. #endif
  576. }
  577. /* --------------------------------------------------------------------------------------------- */
  578. static int
  579. str_8bit_prefix (const char *text, const char *prefix)
  580. {
  581. int result;
  582. for (result = 0; text[result] != '\0' && prefix[result] != '\0'
  583. && text[result] == prefix[result]; result++);
  584. return result;
  585. }
  586. /* --------------------------------------------------------------------------------------------- */
  587. static int
  588. str_8bit_caseprefix (const char *text, const char *prefix)
  589. {
  590. int result;
  591. for (result = 0; text[result] != '\0' && prefix[result] != '\0'
  592. && char_toupper (text[result]) == char_toupper (prefix[result]); result++);
  593. return result;
  594. }
  595. /* --------------------------------------------------------------------------------------------- */
  596. static void
  597. str_8bit_fix_string (char *text)
  598. {
  599. (void) text;
  600. }
  601. /* --------------------------------------------------------------------------------------------- */
  602. static char *
  603. str_8bit_create_key (const char *text, gboolean case_sen)
  604. {
  605. return case_sen ? (char *) text : str_8bit_strdown (text);
  606. }
  607. /* --------------------------------------------------------------------------------------------- */
  608. static int
  609. str_8bit_key_collate (const char *t1, const char *t2, gboolean case_sen)
  610. {
  611. return case_sen ? strcmp (t1, t2) : strcoll (t1, t2);
  612. }
  613. /* --------------------------------------------------------------------------------------------- */
  614. static void
  615. str_8bit_release_key (char *key, gboolean case_sen)
  616. {
  617. if (!case_sen)
  618. g_free (key);
  619. }
  620. /* --------------------------------------------------------------------------------------------- */
  621. /*** public functions ****************************************************************************/
  622. /* --------------------------------------------------------------------------------------------- */
  623. struct str_class
  624. str_8bit_init (void)
  625. {
  626. struct str_class result;
  627. result.conv_gerror_message = str_8bit_conv_gerror_message;
  628. result.vfs_convert_to = str_8bit_vfs_convert_to;
  629. result.insert_replace_char = str_8bit_insert_replace_char;
  630. result.is_valid_string = str_8bit_is_valid_string;
  631. result.is_valid_char = str_8bit_is_valid_char;
  632. result.cnext_char = str_8bit_cnext_char;
  633. result.cprev_char = str_8bit_cprev_char;
  634. result.cnext_char_safe = str_8bit_cnext_char;
  635. result.cprev_char_safe = str_8bit_cprev_char;
  636. result.cnext_noncomb_char = str_8bit_cnext_noncomb_char;
  637. result.cprev_noncomb_char = str_8bit_cprev_noncomb_char;
  638. result.char_isspace = str_8bit_isspace;
  639. result.char_ispunct = str_8bit_ispunct;
  640. result.char_isalnum = str_8bit_isalnum;
  641. result.char_isdigit = str_8bit_isdigit;
  642. result.char_isprint = str_8bit_isprint;
  643. result.char_iscombiningmark = str_8bit_iscombiningmark;
  644. result.char_toupper = str_8bit_toupper;
  645. result.char_tolower = str_8bit_tolower;
  646. result.length = str_8bit_length;
  647. result.length2 = str_8bit_length2;
  648. result.length_noncomb = str_8bit_length;
  649. result.fix_string = str_8bit_fix_string;
  650. result.term_form = str_8bit_term_form;
  651. result.fit_to_term = str_8bit_fit_to_term;
  652. result.term_trim = str_8bit_term_trim;
  653. result.term_width2 = str_8bit_term_width2;
  654. result.term_width1 = str_8bit_term_width1;
  655. result.term_char_width = str_8bit_term_char_width;
  656. result.term_substring = str_8bit_term_substring;
  657. result.trunc = str_8bit_trunc;
  658. result.offset_to_pos = str_8bit_offset_to_pos;
  659. result.column_to_pos = str_8bit_column_to_pos;
  660. result.create_search_needle = str_8bit_create_search_needle;
  661. result.release_search_needle = str_8bit_release_search_needle;
  662. result.search_first = str_8bit_search_first;
  663. result.search_last = str_8bit_search_last;
  664. result.compare = str_8bit_compare;
  665. result.ncompare = str_8bit_ncompare;
  666. result.casecmp = str_8bit_casecmp;
  667. result.ncasecmp = str_8bit_ncasecmp;
  668. result.prefix = str_8bit_prefix;
  669. result.caseprefix = str_8bit_caseprefix;
  670. result.create_key = str_8bit_create_key;
  671. result.create_key_for_filename = str_8bit_create_key;
  672. result.key_collate = str_8bit_key_collate;
  673. result.release_key = str_8bit_release_key;
  674. return result;
  675. }
  676. /* --------------------------------------------------------------------------------------------- */