jehanne/sys/src/cmd/pict
Giacomo Tesio e70feee4a3 libc: introduce "jehanne_" namespace
With this commit all functions declared in libc.h have been renamed
with the "jehanne_" prefix. This is done for several reason:

- it removes conflicts during symbol resolution when linking
  standard C libraries like newlib or musl
- it allows programs depending on a standard C library to directly
  link to a library depending on our non standard libc (eg libsec).

To ease transiction two files are provided:

- sys/include/lib9.h that can be included instead of <libc.h> to use
  the old names (via a simple set of macros)
- sys/src/lib/c/lib9.c that can be compiled with a program where the
  macro provided by lib9.h are too dumb (see for example rc or grep).

In the kernel port/lib.h has been modified accordingly and some of
the functions it directly provides has been renamed too (eg malloc
in qmalloc.c and print in devcons.c).
2017-04-19 23:48:21 +02:00
..
README.txt cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
bmp.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
bmp.h cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
build.json cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
close.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
gif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
ico.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
imagefile.h cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
jpegdump.c cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
jpg.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
multichan.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
onechan.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
png.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
ppm.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readbmp.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readgif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readjpg.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readpng.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readppm.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readtga.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readtif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readv210.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
readyuv.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
rgbrgbv.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
rgbv.h cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
rgbycc.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
tga.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
tif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
togif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
toico.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
tojpg.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
topng.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
toppm.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
torgbv.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
totif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
totruecolor.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
v210.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writegif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writejpg.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writepng.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writeppm.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writerawimage.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
writetif.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00
ycbcr.h cmd/pict: import 9front's graphical tools 2017-01-03 22:31:09 +01:00
yuv.c libc: introduce "jehanne_" namespace 2017-04-19 23:48:21 +02:00

README.txt

These are the graphic tools from 9front as documented at

	http://man.cat-v.org/9front/1/jpg

The whole pict/ folder should be an external package as it's not
actually required for a minimal system.
It's included in the main Jehanne's source tree because we don't have
a package management system yet.