File: lstdlib.h

package info (click to toggle)
afdko 3.6.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 19,172 kB
  • sloc: ansic: 218,471; python: 17,440; cpp: 3,500; makefile: 3,172; sh: 464; yacc: 421; cs: 47
file content (36 lines) | stat: -rw-r--r-- 986 bytes parent folder | download | duplicates (3)
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
29
30
31
32
33
34
35
36
/* Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/). All Rights Reserved.
This software is licensed as OpenSource, under the Apache License, Version 2.0.
This license is available at: http://opensource.org/licenses/Apache-2.0. */
/***********************************************************************/

/* Veneer layer for stdlib.h */

#ifndef LSTDLIB_H
#define LSTDLIB_H

#if WITHIN_PS

/* PostScript environment */
#include PACKAGE_SPECS
#include ENVIRONMENT
#include PROTOS
#include PUBLICTYPES
#include PSLIB
#include PSSUPPORT

#define size_t IntX /* xxx this can't be correct */

typedef int (*CompareProc)(const void *keyval, const void *datum);
void qsort(void *base, size_t count, size_t size, CompareProc cmp);
void *bsearch(const void *key, const void *base, size_t count, size_t size,
              CompareProc cmp);
#define exit os_exit

#else /* WITHIN_PS */

/* ANSI C environment */
#include <stdlib.h>

#endif /* WITHIN_PS */

#endif /* LSTDLIB_H */