lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | * qrencode - QR Code encoder |
| 3 | * |
| 4 | * Input data splitter. |
| 5 | * Copyright (C) 2006-2011 Kentaro Fukuchi <kentaro@fukuchi.org> |
| 6 | * |
| 7 | * The following data / specifications are taken from |
| 8 | * "Two dimensional symbol -- QR-code -- Basic Specification" (JIS X0510:2004) |
| 9 | * or |
| 10 | * "Automatic identification and data capture techniques -- |
| 11 | * QR Code 2005 bar code symbology specification" (ISO/IEC 18004:2006) |
| 12 | * |
| 13 | * This library is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU Lesser General Public |
| 15 | * License as published by the Free Software Foundation; either |
| 16 | * version 2.1 of the License, or any later version. |
| 17 | * |
| 18 | * This library is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 21 | * Lesser General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU Lesser General Public |
| 24 | * License along with this library; if not, write to the Free Software |
| 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 26 | */ |
| 27 | |
| 28 | #ifndef __SPLIT_H__ |
| 29 | #define __SPLIT_H__ |
| 30 | |
| 31 | #include "qrencode.h" |
| 32 | |
| 33 | /** |
| 34 | * Split the input string (null terminated) into QRinput. |
| 35 | * @param string input string |
| 36 | * @param hint give QR_MODE_KANJI if the input string contains Kanji character encoded in Shift-JIS. If not, give QR_MODE_8. |
| 37 | * @param casesensitive 0 for case-insensitive encoding (all alphabet characters are replaced to UPPER-CASE CHARACTERS. |
| 38 | * @retval 0 success. |
| 39 | * @retval -1 an error occurred. errno is set to indicate the error. See |
| 40 | * Exceptions for the details. |
| 41 | * @throw EINVAL invalid input object. |
| 42 | * @throw ENOMEM unable to allocate memory for input objects. |
| 43 | */ |
| 44 | extern int Split_splitStringToQRinput(const char *string, QRinput *input, |
| 45 | QRencodeMode hint, int casesensitive); |
| 46 | |
| 47 | #endif /* __SPLIT_H__ */ |