1/*-------------------------------------------------------------------------
2 *
3 * int8.h
4 * Declarations for operations on 64-bit integers.
5 *
6 *
7 * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/utils/int8.h
11 *
12 * NOTES
13 * These data types are supported on all 64-bit architectures, and may
14 * be supported through libraries on some 32-bit machines. If your machine
15 * is not currently supported, then please try to make it so, then post
16 * patches to the postgresql.org hackers mailing list.
17 *
18 *-------------------------------------------------------------------------
19 */
20#ifndef INT8_H
21#define INT8_H
22
23extern bool scanint8(const char *str, bool errorOK, int64 *result);
24
25#endif /* INT8_H */
26