blob: 29ab2484585d46d6f7850fed36f94234dde1836d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* hex_decode.h
* hex decoding
*
* Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/common/hex_decode.h
*/
#ifndef COMMON_HEX_DECODE_H
#define COMMON_HEX_DECODE_H
extern uint64 hex_decode(const char *src, size_t len, char *dst);
#endif /* COMMON_HEX_DECODE_H */
|