# is_utf8 **Repository Path**: mirrors_amutu/is_utf8 ## Basic Information - **Project Name**: is_utf8 - **Description**: Check if a given string is a valid utf-8 string. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README is_utf8 is a program and a c library to check if a given string is a valid utf-8 one. To compile (The program and the lib) : $ make To run : $ ./is_utf8 $'\xe9' && echo OK || echo KO The lib and the program will return 0 (Success) if the sequence is a valid utf-8 string. Else they will return the byte, starting from one, where the error was encontred.