/* * jmorecfg.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * Modified 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains additional configuration options that customize the * JPEG software for special applications or support machine-dependent * optimizations. Most users will not need to touch this file. */ /* * Maximum number of components (color channels) allowed in JPEG image. * To meet the letter of the JPEG spec, set this to 255. However, darn * few applications need more than 4 channels (maybe 5 for CMYK + alpha * mask). We recommend 10 as a reasonable compromise; use 4 if you are * really short on memory. (Each allowed component costs a hundred or so * bytes of storage, whether actually used in an image or not.) */ #define MAX_COMPONENTS 10 /* maximum number of image components */ /* * Basic data types. * You may need to change these if you have a machine with unusual data * type sizes; for example, "char" not 8 bits, "short" not 16 bits, * or "long" not 32 bits. We don't care whether "int" is 16 or 32 bits, * but it had better be at least 16. */ /* Representation of a single sample (pixel element value). * We frequently allocate large arrays of these, so it's important to keep * them small. But if you have memory to burn and access to char or short * arrays is very slow on your hardware, you might want to change these. */ #if BITS_IN_JSAMPLE == 8 /* JSAMPLE should be the smallest type that will hold the values 0..255. * You can use a signed char by having GETJSAMPLE mask it with 0xFF. */ #ifdef HAVE_UNSIGNED_CHAR typedef unsigned char JSAMPLE; #define GETJSAMPLE(value) ((int) (value)) #else /* not HAVE_UNSIGNED_CHAR */ typedef char JSAMPLE; #ifdef __CHAR_UNSIGNED__ #define GETJSAMPLE(value) ((int) (value)) #else #define GETJSAMPLE(value) ((int) (value) & 0xFF) #endif /* __CHAR_UNSIGNED__ */ #endif /* HAVE_UNSIGNED_CHAR */ #define MAXJSAMPLE 255 #define CENTERJSAMPLE 128 #endif /* BITS_IN_JSAMPLE == 8 */ #if BITS_IN_JSAMPLE == 12 /* JSAMPLE should be the smallest type that will hold the values 0..4095. * On nearly all machines "short" will do nicely. */ typedef short JSAMPLE; #define GETJSAMPLE(value) ((int) (value)) #define MAXJSAMPLE 4095 #define CENTERJSAMPLE 2048 #endif /* BITS_IN_JSAMPLE == 12 */ /* Representation of a DCT frequency coefficient. * This should be a signed value of at least 16 bits; "short" is usually OK. * Again, we allocate large arrays of these, but you can change to int * if you have memory to burn and "short" is really slow. */ typedef short JCOEF; /* Compressed datastreams are represented as arrays of JOCTET. * These must be EXACTLY 8 bits wide, at least once they are written to * external storage. Note that when using the stdio data source/destination * managers, this is also the data type passed to fread/fwrite. */ #ifdef HAVE_UNSIGNED_CHAR typedef unsigned char JOCTET; #define GETJOCTET(value) (value) #else /* not HAVE_UNSIGNED_CHAR */ typedef char JOCTET; #ifdef __CHAR_UNSIGNED__ #define GETJOCTET(value) (value) #else #define GETJOCTET(value) ((value) & 0xFF) #endif /* __CHAR_UNSIGNED__ */ #endif /* HAVE_UNSIGNED_CHAR */ /* These typedefs are used for various table entries and so forth. * They must be at least as wide as specified; but making them too big * won't cost a huge amount of memory, so we don't provide special * extraction code like we did for JSAMPLE. (In other words, these * typedefs live at a different point on the speed/space tradeoff curve.) */ /* UINT8 must hold at least the values 0..255. */ #ifdef HAVE_UNSIGNED_CHAR typedef unsigned char UINT8; #else /* not HAVE_UNSIGNED_CHAR */ #ifdef __CHAR_UNSIGNED__ typedef char UINT8; #else /* not __CHAR_UNSIGNED__ */ typedef short UINT8; #endif /* __CHAR_UNSIGNED__ */ #endif /* HAVE_UNSIGNED_CHAR */ /* UINT16 must hold at least the values 0..65535. */ #ifdef HAVE_UNSIGNED_SHORT typedef unsigned short UINT16; #else /* not HAVE_UNSIGNED_SHORT */ typedef unsigned int UINT16; #endif /* HAVE_UNSIGNED_SHORT */ /* INT16 must hold at least the values -32768..32767. */ #ifndef XMD_H /* X11/xmd.h correctly defines INT16 */ typedef short INT16; #endif /* INT32 must hold at least signed 32-bit values. * * NOTE: The INT32 typedef dates back to libjpeg v5 (1994.) Integers were * sometimes 16-bit back then (MS-DOS), which is why INT32 is typedef'd to * long. It also wasn't common (or at least as common) in 1994 for INT32 to be * defined by platform headers. Since then, however, INT32 is defined in * several other common places: * * Xmd.h (X11 header) typedefs INT32 to int on 64-bit platforms and long on * 32-bit platforms (i.e always a 32-bit signed type.) * * basetsd.h (Win32 header) typedefs INT32 to int (always a 32-bit signed type * on modern platforms.) * * qglobal.h (Qt header) typedefs INT32 to int (always a 32-bit signed type on * modern platforms.) * * This is a recipe for conflict, since "long" and "int" aren't always * compatible types. Since the definition of INT32 has technically been part * of the libjpeg API for more than 20 years, we can't remove it, but we do not * use it internally any longer. We instead define a separate type (JLONG) * for internal use, which ensures that internal behavior will always be the * same regardless of any external headers that may be included. */ #ifndef XMD_H /* X11/xmd.h correctly defines INT32 */ #ifndef _BASETSD_H_ /* Microsoft defines it in basetsd.h */ #ifndef _BASETSD_H /* MinGW is slightly different */ #ifndef QGLOBAL_H /* Qt defines it in qglobal.h */ typedef long INT32; #endif #endif #endif #endif /* Datatype used for image dimensions. The JPEG standard only supports * images up to 64K*64K due to 16-bit fields in SOF markers. Therefore * "unsigned int" is sufficient on all machines. However, if you need to * handle larger images and you don't mind deviating from the spec, you * can change this datatype. (Note that changing this datatype will * potentially require modifying the SIMD code. The x86-64 SIMD extensions, * in particular, assume a 32-bit JDIMENSION.) */ typedef unsigned int JDIMENSION; #define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */ /* These macros are used in all function definitions and extern declarations. * You could modify them if you need to change function linkage conventions; * in particular, you'll need to do that to make the library a Windows DLL. * Another application is to make all functions global for use with debuggers * or code profilers that require it. */ /* a function called through method pointers: */ #define METHODDEF(type) static type /* a function used only in its module: */ #define LOCAL(type) static type /* a function referenced thru EXTERNs: */ #define GLOBAL(type) type /* a reference to a GLOBAL function: */ #define EXTERN(type) extern type /* Originally, this macro was used as a way of defining function prototypes * for both modern compilers as well as older compilers that did not support * prototype parameters. libjpeg-turbo has never supported these older, * non-ANSI compilers, but the macro is still included because there is some * software out there that uses it. */ #define JMETHOD(type,methodname,arglist) type (*methodname) arglist /* libjpeg-turbo no longer supports platforms that have far symbols (MS-DOS), * but again, some software relies on this macro. */ #undef FAR #define FAR /* * On a few systems, type boolean and/or its values FALSE, TRUE may appear * in standard header files. Or you may have conflicts with application- * specific header files that you want to include together with these files. * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. */ #ifndef HAVE_BOOLEAN typedef int boolean; #endif #ifndef FALSE /* in case these macros already exist */ #define FALSE 0 /* values of boolean */ #endif #ifndef TRUE #define TRUE 1 #endif /* * The remaining options affect code selection within the JPEG library, * but they don't need to be visible to most applications using the library. * To minimize application namespace pollution, the symbols won't be * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined. */ #ifdef JPEG_INTERNALS #define JPEG_INTERNAL_OPTIONS #endif #ifdef JPEG_INTERNAL_OPTIONS /* * These defines indicate whether to include various optional functions. * Undefining some of these symbols will produce a smaller but less capable * library. Note that you can leave certain source files out of the * compilation/linking process if you've #undef'd the corresponding symbols. * (You may HAVE to do that if your compiler doesn't like null source files.) */ /* Capability options common to encoder and decoder: */ #define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */ #define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */ #define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */ /* Encoder capability options: */ #define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ #define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ #define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */ /* Note: if you selected 12-bit data precision, it is dangerous to turn off * ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit * precision, so jchuff.c normally uses entropy optimization to compute * usable tables for higher precision. If you don't want to do optimization, * you'll have to supply different default Huffman tables. * The exact same statements apply for progressive JPEG: the default tables * don't work for progressive mode. (This may get fixed, however.) */ #define INPUT_SMOOTHING_SUPPORTED /* Input image smoothing option? */ /* Decoder capability options: */ #define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ #define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ #define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */ #define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */ #define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */ #undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */ #define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */ #define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */ #define QUANT_2PASS_SUPPORTED /* 2-pass color quantization? */ /* more capability options later, no doubt */ /* * The RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE macros are a vestigial * feature of libjpeg. The idea was that, if an application developer needed * to compress from/decompress to a BGR/BGRX/RGBX/XBGR/XRGB buffer, they could * change these macros, rebuild libjpeg, and link their application statically * with it. In reality, few people ever did this, because there were some * severe restrictions involved (cjpeg and djpeg no longer worked properly, * compressing/decompressing RGB JPEGs no longer worked properly, and the color * quantizer wouldn't work with pixel sizes other than 3.) Further, since all * of the O/S-supplied versions of libjpeg were built with the default values * of RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE, many applications have * come to regard these values as immutable. * * The libjpeg-turbo colorspace extensions provide a much cleaner way of * compressing from/decompressing to buffers with arbitrary component orders * and pixel sizes. Thus, we do not support changing the values of RGB_RED, * RGB_GREEN, RGB_BLUE, or RGB_PIXELSIZE. In addition to the restrictions * listed above, changing these values will also break the SIMD extensions and * the regression tests. */ #define RGB_RED 0 /* Offset of Red in an RGB scanline element */ #define RGB_GREEN 1 /* Offset of Green */ #define RGB_BLUE 2 /* Offset of Blue */ #define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */ #define JPEG_NUMCS 17 #define EXT_RGB_RED 0 #define EXT_RGB_GREEN 1 #define EXT_RGB_BLUE 2 #define EXT_RGB_PIXELSIZE 3 #define EXT_RGBX_RED 0 #define EXT_RGBX_GREEN 1 #define EXT_RGBX_BLUE 2 #define EXT_RGBX_PIXELSIZE 4 #define EXT_BGR_RED 2 #define EXT_BGR_GREEN 1 #define EXT_BGR_BLUE 0 #define EXT_BGR_PIXELSIZE 3 #define EXT_BGRX_RED 2 #define EXT_BGRX_GREEN 1 #define EXT_BGRX_BLUE 0 #define EXT_BGRX_PIXELSIZE 4 #define EXT_XBGR_RED 3 #define EXT_XBGR_GREEN 2 #define EXT_XBGR_BLUE 1 #define EXT_XBGR_PIXELSIZE 4 #define EXT_XRGB_RED 1 #define EXT_XRGB_GREEN 2 #define EXT_XRGB_BLUE 3 #define EXT_XRGB_PIXELSIZE 4 static const int rgb_red[JPEG_NUMCS] = { -1, -1, RGB_RED, -1, -1, -1, EXT_RGB_RED, EXT_RGBX_RED, EXT_BGR_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED, EXT_RGBX_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED, -1 }; static const int rgb_green[JPEG_NUMCS] = { -1, -1, RGB_GREEN, -1, -1, -1, EXT_RGB_GREEN, EXT_RGBX_GREEN, EXT_BGR_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN, EXT_RGBX_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN, -1 }; static const int rgb_blue[JPEG_NUMCS] = { -1, -1, RGB_BLUE, -1, -1, -1, EXT_RGB_BLUE, EXT_RGBX_BLUE, EXT_BGR_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE, EXT_RGBX_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE, -1 }; static const int rgb_pixelsize[JPEG_NUMCS] = { -1, -1, RGB_PIXELSIZE, -1, -1, -1, EXT_RGB_PIXELSIZE, EXT_RGBX_PIXELSIZE, EXT_BGR_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE, EXT_RGBX_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE, -1 }; /* Definitions for speed-related optimizations. */ /* On some machines (notably 68000 series) "int" is 32 bits, but multiplying * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER * as short on such a machine. MULTIPLIER must be at least 16 bits wide. */ #ifndef MULTIPLIER #ifndef WITH_SIMD #define MULTIPLIER int /* type for fastest integer multiply */ #else #define MULTIPLIER short /* prefer 16-bit with SIMD for parellelism */ #endif #endif /* FAST_FLOAT should be either float or double, whichever is done faster * by your compiler. (Note that this type is only used in the floating point * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.) */ #ifndef FAST_FLOAT #define FAST_FLOAT float #endif #endif /* JPEG_INTERNAL_OPTIONS */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
GL | Folder | 0755 |
|
|
X11 | Folder | 0755 |
|
|
apache2 | Folder | 0755 |
|
|
arpa | Folder | 0755 |
|
|
asm | Folder | 0755 |
|
|
asm-generic | Folder | 0755 |
|
|
bind9 | Folder | 0755 |
|
|
bits | Folder | 0755 |
|
|
bsock | Folder | 0755 |
|
|
c++ | Folder | 0755 |
|
|
criu | Folder | 0755 |
|
|
curl | Folder | 0755 |
|
|
drm | Folder | 0755 |
|
|
e2p | Folder | 0755 |
|
|
et | Folder | 0755 |
|
|
event2 | Folder | 0755 |
|
|
ext2fs | Folder | 0755 |
|
|
finclude | Folder | 0755 |
|
|
fontconfig | Folder | 0755 |
|
|
freetype2 | Folder | 0755 |
|
|
fstrm | Folder | 0755 |
|
|
gdb | Folder | 0755 |
|
|
gdbm | Folder | 0755 |
|
|
gnu | Folder | 0755 |
|
|
Folder | 0755 |
|
||
gssapi | Folder | 0755 |
|
|
gssrpc | Folder | 0755 |
|
|
json-c | Folder | 0755 |
|
|
kadm5 | Folder | 0755 |
|
|
krb5 | Folder | 0755 |
|
|
libdb | Folder | 0755 |
|
|
libexslt | Folder | 0755 |
|
|
libltdl | Folder | 0755 |
|
|
libpng16 | Folder | 0755 |
|
|
libxml2 | Folder | 0755 |
|
|
libxslt | Folder | 0755 |
|
|
linux | Folder | 0755 |
|
|
lua-5.1 | Folder | 0755 |
|
|
lzma | Folder | 0755 |
|
|
misc | Folder | 0755 |
|
|
mtd | Folder | 0755 |
|
|
mysql | Folder | 0755 |
|
|
ncurses | Folder | 0755 |
|
|
ncursesw | Folder | 0755 |
|
|
net | Folder | 0755 |
|
|
netash | Folder | 0755 |
|
|
netatalk | Folder | 0755 |
|
|
netax25 | Folder | 0755 |
|
|
neteconet | Folder | 0755 |
|
|
netinet | Folder | 0755 |
|
|
netipx | Folder | 0755 |
|
|
netiucv | Folder | 0755 |
|
|
netpacket | Folder | 0755 |
|
|
netrom | Folder | 0755 |
|
|
netrose | Folder | 0755 |
|
|
nfs | Folder | 0755 |
|
|
openssl | Folder | 0755 |
|
|
perf | Folder | 0755 |
|
|
protobuf-c | Folder | 0755 |
|
|
protocols | Folder | 0755 |
|
|
python2.7 | Folder | 0755 |
|
|
python3.6m | Folder | 0755 |
|
|
python3.8 | Folder | 0755 |
|
|
rdma | Folder | 0755 |
|
|
rpc | Folder | 0755 |
|
|
sasl | Folder | 0755 |
|
|
scsi | Folder | 0755 |
|
|
security | Folder | 0755 |
|
|
selinux | Folder | 0755 |
|
|
sepol | Folder | 0755 |
|
|
sound | Folder | 0755 |
|
|
sys | Folder | 0755 |
|
|
uuid | Folder | 0755 |
|
|
video | Folder | 0755 |
|
|
webp | Folder | 0755 |
|
|
xcb | Folder | 0755 |
|
|
xen | Folder | 0755 |
|
|
FlexLexer.h | File | 6.73 KB | 0644 |
|
a.out.h | File | 4.25 KB | 0644 |
|
aio.h | File | 7.28 KB | 0644 |
|
aliases.h | File | 1.98 KB | 0644 |
|
alloca.h | File | 1.17 KB | 0644 |
|
ar.h | File | 1.69 KB | 0644 |
|
argp.h | File | 24.82 KB | 0644 |
|
argz.h | File | 5.91 KB | 0644 |
|
assert.h | File | 4.45 KB | 0644 |
|
autosprintf.h | File | 2.33 KB | 0644 |
|
byteswap.h | File | 1.37 KB | 0644 |
|
bzlib.h | File | 6.1 KB | 0644 |
|
com_err.h | File | 2.07 KB | 0644 |
|
complex.h | File | 7 KB | 0644 |
|
cpio.h | File | 2.21 KB | 0644 |
|
cpuidle.h | File | 844 B | 0644 |
|
crypt.h | File | 8.9 KB | 0644 |
|
ctype.h | File | 10.71 KB | 0644 |
|
curses.h | File | 97.29 KB | 0644 |
|
cursesapp.h | File | 6.62 KB | 0644 |
|
cursesf.h | File | 27.2 KB | 0644 |
|
cursesm.h | File | 19.22 KB | 0644 |
|
cursesp.h | File | 8.4 KB | 0644 |
|
cursesw.h | File | 48.55 KB | 0644 |
|
cursslk.h | File | 7.13 KB | 0644 |
|
db.h | File | 120.22 KB | 0444 |
|
db_185.h | File | 5.84 KB | 0444 |
|
dbm.h | File | 1.38 KB | 0644 |
|
dirent.h | File | 12.19 KB | 0644 |
|
dlfcn.h | File | 7.07 KB | 0644 |
|
elf.h | File | 170.73 KB | 0644 |
|
endian.h | File | 3.11 KB | 0644 |
|
entities.h | File | 4.81 KB | 0644 |
|
envz.h | File | 2.8 KB | 0644 |
|
err.h | File | 2.16 KB | 0644 |
|
errno.h | File | 1.64 KB | 0644 |
|
error.h | File | 1.99 KB | 0644 |
|
eti.h | File | 2.82 KB | 0644 |
|
etip.h | File | 9.47 KB | 0644 |
|
evdns.h | File | 1.97 KB | 0644 |
|
event.h | File | 2.68 KB | 0644 |
|
evhttp.h | File | 1.99 KB | 0644 |
|
evrpc.h | File | 1.97 KB | 0644 |
|
evutil.h | File | 1.74 KB | 0644 |
|
execinfo.h | File | 1.49 KB | 0644 |
|
expat.h | File | 42.66 KB | 0644 |
|
expat_config.h | File | 3.43 KB | 0644 |
|
expat_external.h | File | 5.4 KB | 0644 |
|
fcntl.h | File | 10.7 KB | 0644 |
|
features.h | File | 15.69 KB | 0644 |
|
fenv.h | File | 5.72 KB | 0644 |
|
fmtmsg.h | File | 3.16 KB | 0644 |
|
fnmatch.h | File | 2.24 KB | 0644 |
|
form.h | File | 18.17 KB | 0644 |
|
fpu_control.h | File | 3.5 KB | 0644 |
|
fstab.h | File | 3.04 KB | 0644 |
|
fstrm.h | File | 12.71 KB | 0644 |
|
fts.h | File | 8.18 KB | 0644 |
|
ftw.h | File | 5.13 KB | 0644 |
|
gconv.h | File | 4.31 KB | 0644 |
|
gcrypt.h | File | 68.71 KB | 0644 |
|
gd.h | File | 56.42 KB | 0644 |
|
gd_color_map.h | File | 478 B | 0644 |
|
gd_errors.h | File | 1.47 KB | 0644 |
|
gd_io.h | File | 3.05 KB | 0644 |
|
gdbm.h | File | 10.1 KB | 0644 |
|
gdcache.h | File | 2.83 KB | 0644 |
|
gdfontg.h | File | 553 B | 0644 |
|
gdfontl.h | File | 551 B | 0644 |
|
gdfontmb.h | File | 519 B | 0644 |
|
gdfonts.h | File | 515 B | 0644 |
|
gdfontt.h | File | 546 B | 0644 |
|
gdfx.h | File | 497 B | 0644 |
|
gdpp.h | File | 50.94 KB | 0644 |
|
getopt.h | File | 1.43 KB | 0644 |
|
gettext-po.h | File | 15.17 KB | 0644 |
|
glob.h | File | 6.46 KB | 0644 |
|
gnu-versions.h | File | 2.29 KB | 0644 |
|
gnumake.h | File | 2.84 KB | 0644 |
|
gpg-error.h | File | 66.29 KB | 0644 |
|
gpgrt.h | File | 66.29 KB | 0644 |
|
grp.h | File | 6.53 KB | 0644 |
|
gshadow.h | File | 4.42 KB | 0644 |
|
gssapi.h | File | 181 B | 0644 |
|
iconv.h | File | 1.81 KB | 0644 |
|
idn-free.h | File | 2.41 KB | 0644 |
|
idn-int.h | File | 20 B | 0644 |
|
idna.h | File | 3.48 KB | 0644 |
|
ieee754.h | File | 4.79 KB | 0644 |
|
ifaddrs.h | File | 2.77 KB | 0644 |
|
inttypes.h | File | 11.61 KB | 0644 |
|
jconfig-64.h | File | 2.17 KB | 0644 |
|
jconfig.h | File | 246 B | 0644 |
|
jerror.h | File | 14.73 KB | 0644 |
|
jmorecfg.h | File | 14.7 KB | 0644 |
|
jpegint.h | File | 15.22 KB | 0644 |
|
jpeglib.h | File | 48.71 KB | 0644 |
|
kdb.h | File | 67.66 KB | 0644 |
|
keyutils.h | File | 7.52 KB | 0644 |
|
krad.h | File | 8.72 KB | 0644 |
|
krb5.h | File | 402 B | 0644 |
|
langinfo.h | File | 17.43 KB | 0644 |
|
lastlog.h | File | 126 B | 0644 |
|
lber.h | File | 14.95 KB | 0644 |
|
lber_types.h | File | 1.43 KB | 0644 |
|
ldap.h | File | 63.57 KB | 0644 |
|
ldap_cdefs.h | File | 9.24 KB | 0644 |
|
ldap_features.h | File | 1.77 KB | 0644 |
|
ldap_schema.h | File | 9.23 KB | 0644 |
|
ldap_utf8.h | File | 3.39 KB | 0644 |
|
ldif.h | File | 4.58 KB | 0644 |
|
libaio.h | File | 8.73 KB | 0644 |
|
libgen.h | File | 1.35 KB | 0644 |
|
libintl.h | File | 4.47 KB | 0644 |
|
limits.h | File | 5.29 KB | 0644 |
|
link.h | File | 7.05 KB | 0644 |
|
locale.h | File | 7.49 KB | 0644 |
|
ltdl.h | File | 5.58 KB | 0644 |
|
lzma.h | File | 9.59 KB | 0644 |
|
magic.h | File | 5.46 KB | 0644 |
|
malloc.h | File | 5.96 KB | 0644 |
|
math.h | File | 52.07 KB | 0644 |
|
mcheck.h | File | 2.38 KB | 0644 |
|
memory.h | File | 955 B | 0644 |
|
menu.h | File | 11.91 KB | 0644 |
|
mntent.h | File | 3.28 KB | 0644 |
|
monetary.h | File | 1.76 KB | 0644 |
|
mqueue.h | File | 3.67 KB | 0644 |
|
nc_tparm.h | File | 4.1 KB | 0644 |
|
ncurses.h | File | 97.29 KB | 0644 |
|
ncurses_dll.h | File | 4.18 KB | 0644 |
|
ndbm.h | File | 2.4 KB | 0644 |
|
netdb.h | File | 27.44 KB | 0644 |
|
nl_types.h | File | 1.71 KB | 0644 |
|
nss.h | File | 1.83 KB | 0644 |
|
obstack.h | File | 20.81 KB | 0644 |
|
panel.h | File | 4.03 KB | 0644 |
|
paths.h | File | 2.91 KB | 0644 |
|
pcre.h | File | 30.97 KB | 0644 |
|
pcre2.h | File | 43.75 KB | 0644 |
|
pcre2posix.h | File | 5.67 KB | 0644 |
|
pcre_scanner.h | File | 6.45 KB | 0644 |
|
pcre_stringpiece.h | File | 6.16 KB | 0644 |
|
pcrecpp.h | File | 25.91 KB | 0644 |
|
pcrecpparg.h | File | 6.62 KB | 0644 |
|
pcreposix.h | File | 5.32 KB | 0644 |
|
png.h | File | 140.77 KB | 0644 |
|
pngconf.h | File | 22.31 KB | 0644 |
|
pnglibconf.h | File | 7.39 KB | 0644 |
|
poll.h | File | 22 B | 0644 |
|
pr29.h | File | 2.07 KB | 0644 |
|
printf.h | File | 6.64 KB | 0644 |
|
proc_service.h | File | 3.39 KB | 0644 |
|
profile.h | File | 11.87 KB | 0644 |
|
pthread.h | File | 40.3 KB | 0644 |
|
pty.h | File | 1.53 KB | 0644 |
|
punycode.h | File | 9.16 KB | 0644 |
|
pwd.h | File | 6.01 KB | 0644 |
|
re_comp.h | File | 962 B | 0644 |
|
regex.h | File | 24.14 KB | 0644 |
|
regexp.h | File | 1.41 KB | 0644 |
|
resolv.h | File | 11.79 KB | 0644 |
|
sched.h | File | 4.62 KB | 0644 |
|
search.h | File | 5.1 KB | 0644 |
|
semaphore.h | File | 2.34 KB | 0644 |
|
setjmp.h | File | 3.58 KB | 0644 |
|
sgtty.h | File | 1.31 KB | 0644 |
|
shadow.h | File | 5.34 KB | 0644 |
|
signal.h | File | 11.96 KB | 0644 |
|
slapi-plugin.h | File | 37.45 KB | 0644 |
|
spawn.h | File | 6.53 KB | 0644 |
|
stab.h | File | 264 B | 0644 |
|
stdc-predef.h | File | 2.24 KB | 0644 |
|
stdint.h | File | 8.27 KB | 0644 |
|
stdio.h | File | 29.46 KB | 0644 |
|
stdio_ext.h | File | 2.73 KB | 0644 |
|
stdlib.h | File | 34.82 KB | 0644 |
|
string.h | File | 17.17 KB | 0644 |
|
stringprep.h | File | 8.03 KB | 0644 |
|
strings.h | File | 4.64 KB | 0644 |
|
syscall.h | File | 25 B | 0644 |
|
sysexits.h | File | 5.11 KB | 0644 |
|
syslog.h | File | 24 B | 0644 |
|
tar.h | File | 3.7 KB | 0644 |
|
term.h | File | 40.22 KB | 0644 |
|
term_entry.h | File | 8.55 KB | 0644 |
|
termcap.h | File | 3.39 KB | 0644 |
|
termio.h | File | 214 B | 0644 |
|
termios.h | File | 3.51 KB | 0644 |
|
tgmath.h | File | 30.75 KB | 0644 |
|
thread_db.h | File | 15.65 KB | 0644 |
|
threads.h | File | 6.5 KB | 0644 |
|
tic.h | File | 13.32 KB | 0644 |
|
tiff.h | File | 35.14 KB | 0644 |
|
tiffconf-64.h | File | 3.35 KB | 0644 |
|
tiffconf.h | File | 250 B | 0644 |
|
tiffio.h | File | 22.68 KB | 0644 |
|
tiffio.hxx | File | 1.66 KB | 0644 |
|
tiffvers.h | File | 410 B | 0644 |
|
time.h | File | 10.12 KB | 0644 |
|
tld.h | File | 4.54 KB | 0644 |
|
ttyent.h | File | 2.44 KB | 0644 |
|
uchar.h | File | 1.95 KB | 0644 |
|
ucontext.h | File | 1.99 KB | 0644 |
|
ulimit.h | File | 1.55 KB | 0644 |
|
unctrl.h | File | 3.03 KB | 0644 |
|
unistd.h | File | 41.74 KB | 0644 |
|
utime.h | File | 1.47 KB | 0644 |
|
utmp.h | File | 3.15 KB | 0644 |
|
utmpx.h | File | 4 KB | 0644 |
|
values.h | File | 1.91 KB | 0644 |
|
verto-module.h | File | 6.48 KB | 0644 |
|
verto.h | File | 18.98 KB | 0644 |
|
wait.h | File | 22 B | 0644 |
|
wchar.h | File | 30.38 KB | 0644 |
|
wctype.h | File | 5.42 KB | 0644 |
|
wordexp.h | File | 2.44 KB | 0644 |
|
zconf.h | File | 15.88 KB | 0644 |
|
zlib.h | File | 94 KB | 0644 |
|