Blame src/terminal-encoding.h

Packit d370c2
/*
Packit d370c2
 * Copyright © 2002 Red Hat, Inc.
Packit d370c2
 * Copyright © 2017 Christian Persch
Packit d370c2
 *
Packit d370c2
 * This program is free software: you can redistribute it and/or modify
Packit d370c2
 * it under the terms of the GNU General Public License as published by
Packit d370c2
 * the Free Software Foundation, either version 3 of the License, or
Packit d370c2
 * (at your option) any later version.
Packit d370c2
 *
Packit d370c2
 * This program is distributed in the hope that it will be useful,
Packit d370c2
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d370c2
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d370c2
 * GNU General Public License for more details.
Packit d370c2
 *
Packit d370c2
 * You should have received a copy of the GNU General Public License
Packit d370c2
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit d370c2
 */
Packit d370c2
Packit d370c2
#ifndef TERMINAL_ENCODING_H
Packit d370c2
#define TERMINAL_ENCODING_H
Packit d370c2
Packit d370c2
#include <gtk/gtk.h>
Packit d370c2
Packit d370c2
gboolean terminal_encodings_is_known_charset (const char *charset);
Packit d370c2
Packit d370c2
void terminal_encodings_append_menu (GMenu *menu);
Packit d370c2
Packit d370c2
GtkListStore *terminal_encodings_list_store_new (int column_id,
Packit d370c2
                                                 int column_text);
Packit d370c2
Packit d370c2
#endif /* TERMINAL_ENCODING_H */