diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-12-13 23:36:48 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-12-13 23:36:48 +0000 |
commit | 239564e9efcfab7b97a517d1c0e5527475a4a3f9 (patch) | |
tree | d185cec4468f723686ebb0947f62eb940334e856 /src/include/utils/builtins.h | |
parent | f9f4004b7c37a1894c1e70b44bcc070ac795cdf8 (diff) | |
download | postgresql-239564e9efcfab7b97a517d1c0e5527475a4a3f9.tar.gz postgresql-239564e9efcfab7b97a517d1c0e5527475a4a3f9.zip |
Add routines to help with single-byte (internal) character type support.
Diffstat (limited to 'src/include/utils/builtins.h')
-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 a87c0c9c863..f9ddf18e101 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.71 1998/12/08 06:18:34 thomas Exp $ + * $Id: builtins.h,v 1.72 1998/12/13 23:36:48 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); |