File: control

package info (click to toggle)
utfcheck 1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 2,356 kB
  • sloc: lex: 472; sh: 262; ansic: 130; makefile: 42
file content (28 lines) | stat: -rw-r--r-- 1,251 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: utfcheck
Maintainer: Debian QA Group <packages@qa.debian.org>
Section: text
Priority: optional
Build-Depends: debhelper-compat (=13), flex
Standards-Version: 4.6.0.1
Homepage: https://unifoundry.com/utfcheck/
Vcs-Browser: https://salsa.debian.org/debian/utfcheck
Vcs-Git: https://salsa.debian.org/debian/utfcheck.git
Rules-Requires-Root: no

Package: utfcheck
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: check validity of UTF-8 and ASCII files
 The utfcheck program examines a text file and prints a summary
 of what the file contains: ASCII, UTF-8, UTF-16 (either big-endian
 or little-endian based on an initial Byte Order Mark), or binary
 data.  ASCII and UTF-8 files are processed further; UTF-16 and
 binary files are not.  For a UTF-8 file, the summary includes
 whether or not the file begins with the Unicode Byte Order Mark
 (U+FEFF).  Any following data encountered that is not well-formed
 ASCII or UTF-8 Unicode is considered to be binary data; upon
 reading such data the input file is considered not to be a proper
 text file and the program exits with an error status.
 .
 The utfcheck program returns an exit status of EXIT_SUCCESS if
 the text file was well-formed, and EXIT_FAILURE otherwise.