mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
15 lines
328 B
C
15 lines
328 B
C
/*
|
|
* psql - the PostgreSQL interactive terminal
|
|
*
|
|
* Copyright (c) 2000-2004, PostgreSQL Global Development Group
|
|
*
|
|
* $PostgreSQL: pgsql/src/bin/psql/tab-complete.h,v 1.11 2004/08/29 04:13:03 momjian Exp $
|
|
*/
|
|
#ifndef TAB_COMPLETE_H
|
|
#define TAB_COMPLETE_H
|
|
|
|
#include "postgres_fe.h"
|
|
|
|
void initialize_readline(void);
|
|
|
|
#endif
|