8000 Add routines to help with single-byte char type handling. · machack666/postgres@4d7ffd4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4d7ffd4

Browse files
author
Thomas G. Lockhart
committed
Add routines to help with single-byte char type handling.
1 parent 4a7fb26 commit 4d7ffd4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/include/utils/builtins.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: builtins.h,v 1.69 1998/10/29 18:07:09 momjian Exp $
9+
* $Id: builtins.h,v 1.69.2.1 1998/12/14 00:15:18 thomas Exp $
1010
*
1111
* NOTES
1212
* This should normally only be included by fmgr.h.
@@ -60,6 +60,8 @@ extern int8 charmi(int8 arg1, int8 arg2);
6060
extern int8 charmul(int8 arg1, int8 arg2);
6161
extern int8 chardiv(int8 arg1, int8 arg2);
6262
extern bool cideq(int8 arg1, int8 arg2);
63+
extern int8 text_char(text *arg1);
64+
extern text* char_text(int8 arg1);
6365

6466
/* int.c */
6567
extern int32 int2in(char *num);

0 commit comments

Comments
 (0)
0