diff options
author | Thomas G. Lockhart | 1998-12-14 00:15:18 +0000 |
---|---|---|
committer | Thomas G. Lockhart | 1998-12-14 00:15:18 +0000 |
commit | 4d7ffd460a31831bfceccd77cc5eac67ce378af2 (patch) | |
tree | 5b7e8e9242f1810edaf4c96139467e146fcd1d2a | |
parent | 4a7fb261db2b0e87a4bc68fe7e2c2c5f48d113bb (diff) |
Add routines to help with single-byte char type handling.
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 288c9db46e9..29c4ad545aa 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.69 1998/10/29 18:07:09 momjian Exp $ + * $Id: builtins.h,v 1.69.2.1 1998/12/14 00:15:18 thomas Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -60,6 +60,8 @@ extern int8 charmi(int8 arg1, int8 arg2); extern int8 charmul(int8 arg1, int8 arg2); extern int8 chardiv(int8 arg1, int8 arg2); extern bool cideq(int8 arg1, int8 arg2); +extern int8 text_char(text *arg1); +extern text* char_text(int8 arg1); /* int.c */ extern int32 int2in(char *num); |