Type representing a multibyte character table. More...
Go to the source code of this file.
Data Structures | |
struct | MbTable |
Multibyte character table. More... | |
Functions | |
void | mbtable_free (struct MbTable **table) |
Free an MbTable object. More... | |
struct MbTable * | mbtable_parse (const char *str) |
Parse a multibyte string into a table. More... | |
Type representing a multibyte character table.
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, see http://www.gnu.org/licenses/.
Definition in file mbtable.h.
void mbtable_free | ( | struct MbTable ** | table | ) |
Free an MbTable object.
[out] | table | MbTable to free |
Definition at line 280 of file mbtable.c.
struct MbTable * mbtable_parse | ( | const char * | s | ) |
Parse a multibyte string into a table.
s | String of multibyte characters |
ptr | New MbTable object |
Definition at line 49 of file mbtable.c.