mirror of
https://github.com/postgres/postgres.git
synced 2025-12-12 02:37:31 +03:00
Suppress signed-vs-unsigned-char warnings.
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
/* $PostgreSQL: pgsql/src/bin/psql/mbprint.h,v 1.7 2003/11/29 22:40:49 pgsql Exp $ */
|
||||
/* $PostgreSQL: pgsql/src/bin/psql/mbprint.h,v 1.8 2005/09/24 17:53:27 tgl Exp $ */
|
||||
#ifndef MBPRINT_H
|
||||
#define MBPRINT_H
|
||||
|
||||
#include "mb/pg_wchar.h"
|
||||
|
||||
pg_wchar utf2ucs(const unsigned char *c);
|
||||
extern char *mbvalidate(char *pwcs, int encoding);
|
||||
|
||||
unsigned char *mbvalidate(unsigned char *pwcs, int encoding);
|
||||
|
||||
int pg_wcswidth(unsigned char *pwcs, size_t len, int encoding);
|
||||
extern int pg_wcswidth(const char *pwcs, size_t len, int encoding);
|
||||
|
||||
#endif /* MBPRINT_H */
|
||||
|
||||
Reference in New Issue
Block a user