This website works better with JavaScript.
Home
Help
Register
Sign In
mirrors
/
libowfat
mirror of
/home/gitosis/repositories/libowfat.git
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
899
Commits
2
Branches
2.4 MiB
C
62.4%
Roff
28%
Makefile
8.9%
C++
0.7%
Tree:
f56460eebc
master
vendor
start
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'f56460eebc'
${ noResults }
libowfat
/
fmt
/
fmt_tohex.c
6 lines
85 B
Raw
Blame
History
#
include
"fmt.h"
char
fmt_tohex
(
char
c
)
{
return
(
char
)
(
c
>
=
10
?
c
-
10
+
'
a
'
:
c
+
'
0
'
)
;
}