blob: 7b9eaf599e2fd68f1ea1bcfd8cf4db60a4a260e1 [file] [log] [blame]
Chris Allegretta11b00112000-08-06 21:13:45 +00001/* $Id$ */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002/**************************************************************************
3 * proto.h *
4 * *
David Lawrence Ramseycb801d62006-11-10 02:47:11 +00005 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Chris Allegretta *
6 * Copyright (C) 2005, 2006 David Lawrence Ramsey *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00007 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
Chris Allegretta3a24f3f2001-10-24 11:33:54 +00009 * the Free Software Foundation; either version 2, or (at your option) *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000010 * any later version. *
11 * *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000012 * This program is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
15 * General Public License for more details. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000016 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
David Lawrence Ramsey6e925cf2005-05-15 19:57:17 +000019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
20 * 02110-1301, USA. *
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000021 * *
22 **************************************************************************/
23
David Lawrence Ramseye527e452005-04-15 18:07:26 +000024#ifndef PROTO_H
25#define PROTO_H 1
26
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000027#include "nano.h"
28
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +000029/* All public external variables. See global.c for their
30 * descriptions. */
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000031#ifndef NANO_TINY
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000032extern sigjmp_buf jump_buf;
33extern bool jump_buf_main;
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000034#endif
35
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000036#ifndef DISABLE_WRAPJUSTIFY
David Lawrence Ramsey691698a2005-07-24 19:57:51 +000037extern ssize_t fill;
David Lawrence Ramsey49c3f242004-07-12 16:07:14 +000038extern ssize_t wrap_at;
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +000039#endif
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000040
41extern char *last_search;
42extern char *last_replace;
43
David Lawrence Ramseydb958022005-07-13 20:18:46 +000044extern long flags;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000045extern WINDOW *topwin;
46extern WINDOW *edit;
47extern WINDOW *bottomwin;
48extern int editwinrows;
49
50extern filestruct *cutbuffer;
51#ifndef DISABLE_JUSTIFY
52extern filestruct *jusbuffer;
53#endif
54extern partition *filepart;
55extern openfilestruct *openfile;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000056
David Lawrence Ramseyd89617f2006-01-06 21:51:10 +000057#ifndef NANO_TINY
58extern char *matchbrackets;
59#endif
60
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000061#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000062extern char *whitespace;
David Lawrence Ramsey6e60db62005-03-10 22:52:21 +000063extern int whitespace_len[2];
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000064#endif
65
Chris Allegrettae4f940d2002-03-03 22:36:36 +000066#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +000067extern char *punct;
68extern char *brackets;
Chris Allegretta45329a12002-03-10 01:22:21 +000069extern char *quotestr;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +000070#ifdef HAVE_REGEX_H
71extern regex_t quotereg;
72extern int quoterc;
73extern char *quoteerr;
74#else
75extern size_t quotelen;
76#endif
Chris Allegrettae4f940d2002-03-03 22:36:36 +000077#endif
78
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000079extern char *answer;
80
81extern ssize_t tabsize;
82
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000083#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +000084extern char *backup_dir;
85#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +000086#ifndef DISABLE_OPERATINGDIR
87extern char *operating_dir;
Chris Allegrettaf5de33a2002-02-27 04:14:16 +000088extern char *full_operating_dir;
Chris Allegrettae1f14522001-09-19 03:19:43 +000089#endif
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000090
Chris Allegretta8d8e0122001-04-18 04:28:54 +000091#ifndef DISABLE_SPELLER
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +000092extern char *alt_speller;
Chris Allegretta6df90f52002-07-19 01:08:59 +000093#endif
94
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000095extern shortcut *main_list;
96extern shortcut *whereis_list;
97extern shortcut *replace_list;
Chris Allegretta201f1d92003-02-05 02:51:19 +000098extern shortcut *replace_list_2;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000099extern shortcut *gotoline_list;
100extern shortcut *writefile_list;
101extern shortcut *insertfile_list;
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000102#ifndef NANO_TINY
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000103extern shortcut *extcmd_list;
104#endif
Chris Allegretta201f1d92003-02-05 02:51:19 +0000105#ifndef DISABLE_HELP
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000106extern shortcut *help_list;
Chris Allegretta201f1d92003-02-05 02:51:19 +0000107#endif
108#ifndef DISABLE_SPELLER
109extern shortcut *spell_list;
110#endif
Rocco Corsiaf5c3022001-01-12 07:51:05 +0000111#ifndef DISABLE_BROWSER
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000112extern shortcut *browser_list;
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000113extern shortcut *whereis_file_list;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000114extern shortcut *gotodir_list;
115#endif
116
117#ifdef ENABLE_COLOR
118extern syntaxtype *syntaxes;
119extern char *syntaxstr;
Chris Allegrettaf4b96012001-01-03 07:11:47 +0000120#endif
Chris Allegretta201f1d92003-02-05 02:51:19 +0000121
Chris Allegretta6df90f52002-07-19 01:08:59 +0000122extern const shortcut *currshortcut;
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000123#ifndef NANO_TINY
Chris Allegretta6df90f52002-07-19 01:08:59 +0000124extern toggle *toggles;
Chris Allegretta805c26d2000-09-06 13:39:17 +0000125#endif
126
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000127#ifndef NANO_TINY
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000128extern filestruct *search_history;
129extern filestruct *searchage;
130extern filestruct *searchbot;
131extern filestruct *replace_history;
132extern filestruct *replaceage;
133extern filestruct *replacebot;
Chris Allegretta5beed502003-01-05 20:41:21 +0000134#endif
135
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000136#ifdef HAVE_REGEX_H
137extern regex_t search_regexp;
138extern regmatch_t regmatches[10];
139#endif
140
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000141extern int reverse_attr;
Chris Allegrettaa0d89972003-02-03 03:32:08 +0000142
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000143extern char *homedir;
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000144
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000145/* All public functions in browser.c. */
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000146#ifndef DISABLE_BROWSER
David Lawrence Ramseyb08c9f02006-07-11 18:12:24 +0000147char *do_browser(char *path, DIR *dir);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000148char *do_browse_from(const char *inpath);
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000149void browser_init(const char *path, DIR *dir);
David Lawrence Ramsey91a2a692006-02-07 04:41:44 +0000150void parse_browser_input(int *kbinput, bool *meta_key, bool *func_key);
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000151void browser_refresh(void);
David Lawrence Ramseya43b1082006-06-30 22:28:37 +0000152bool browser_select_filename(const char *needle);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000153int filesearch_init(void);
154bool findnextfile(bool no_sameline, size_t begin, const char *needle);
155void findnextfile_wrap_reset(void);
156void filesearch_abort(void);
157void do_filesearch(void);
158void do_fileresearch(void);
159void do_first_file(void);
160void do_last_file(void);
David Lawrence Ramseya4e92c82006-06-30 14:14:40 +0000161char *striponedir(const char *path);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000162#endif
163
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000164/* All public functions in chars.c. */
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000165#ifdef ENABLE_UTF8
166void utf8_init(void);
167bool using_utf8(void);
168#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000169#ifndef HAVE_ISBLANK
David Lawrence Ramsey1aee5cc2005-06-29 18:17:54 +0000170bool nisblank(int c);
David Lawrence Ramsey77abec72005-03-16 17:00:27 +0000171#endif
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000172#if !defined(HAVE_ISWBLANK) && defined(ENABLE_UTF8)
David Lawrence Ramsey1aee5cc2005-06-29 18:17:54 +0000173bool niswblank(wchar_t wc);
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000174#endif
David Lawrence Ramsey356d2482005-06-13 19:51:56 +0000175bool is_byte(int c);
David Lawrence Ramsey2515ccc2005-06-15 06:04:08 +0000176bool is_alnum_mbchar(const char *c);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000177bool is_blank_mbchar(const char *c);
David Lawrence Ramsey8e341e12006-05-24 17:36:00 +0000178bool is_ascii_cntrl_char(int c);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000179bool is_cntrl_char(int c);
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000180#ifdef ENABLE_UTF8
David Lawrence Ramseyed7ad332005-06-15 16:07:14 +0000181bool is_cntrl_wchar(wchar_t wc);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000182#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000183bool is_cntrl_mbchar(const char *c);
David Lawrence Ramsey2515ccc2005-06-15 06:04:08 +0000184bool is_punct_mbchar(const char *c);
David Lawrence Ramseye2213112005-06-15 03:03:45 +0000185bool is_word_mbchar(const char *c, bool allow_punct);
David Lawrence Ramsey19462612005-06-12 18:05:42 +0000186char control_rep(char c);
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000187#ifdef ENABLE_UTF8
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000188wchar_t control_wrep(wchar_t c);
189#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000190char *control_mbrep(const char *c, char *crep, int *crep_len);
David Lawrence Ramsey96452cb2005-07-26 06:13:45 +0000191char *mbrep(const char *c, char *crep, int *crep_len);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000192int mbwidth(const char *c);
193int mb_cur_max(void);
David Lawrence Ramsey8b006c22005-08-08 23:03:25 +0000194char *make_mbchar(long chr, int *chr_mb_len);
David Lawrence Ramsey96452cb2005-07-26 06:13:45 +0000195int parse_mbchar(const char *buf, char *chr, size_t *col);
David Lawrence Ramseyd24fbb72005-01-14 21:50:32 +0000196size_t move_mbleft(const char *buf, size_t pos);
197size_t move_mbright(const char *buf, size_t pos);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000198#ifndef HAVE_STRCASECMP
199int nstrcasecmp(const char *s1, const char *s2);
200#endif
201int mbstrcasecmp(const char *s1, const char *s2);
202#ifndef HAVE_STRNCASECMP
203int nstrncasecmp(const char *s1, const char *s2, size_t n);
204#endif
205int mbstrncasecmp(const char *s1, const char *s2, size_t n);
206#ifndef HAVE_STRCASESTR
207const char *nstrcasestr(const char *haystack, const char *needle);
208#endif
David Lawrence Ramsey42abfe02005-01-22 18:24:16 +0000209const char *mbstrcasestr(const char *haystack, const char *needle);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000210#if !defined(NANO_TINY) || !defined(DISABLE_TABCOMP)
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000211const char *revstrstr(const char *haystack, const char *needle, const
212 char *rev_start);
David Lawrence Ramsey7b601fd2005-06-13 13:25:36 +0000213#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000214#ifndef NANO_TINY
David Lawrence Ramsey3ee4cf32005-01-22 20:49:14 +0000215const char *revstrcasestr(const char *haystack, const char *needle,
216 const char *rev_start);
David Lawrence Ramsey345260c2005-01-24 01:14:17 +0000217const char *mbrevstrcasestr(const char *haystack, const char *needle,
218 const char *rev_start);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000219#endif
David Lawrence Ramsey3f9c6352005-01-25 19:21:11 +0000220size_t mbstrlen(const char *s);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000221#ifndef HAVE_STRNLEN
222size_t nstrnlen(const char *s, size_t maxlen);
223#endif
224size_t mbstrnlen(const char *s, size_t maxlen);
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000225#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
226char *mbstrchr(const char *s, const char *c);
227#endif
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000228#ifndef NANO_TINY
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000229char *mbstrpbrk(const char *s, const char *accept);
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000230char *revstrpbrk(const char *s, const char *accept, const char
231 *rev_start);
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000232char *mbrevstrpbrk(const char *s, const char *accept, const char
233 *rev_start);
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000234#endif
David Lawrence Ramsey1a16df92006-01-06 22:04:38 +0000235#if defined(ENABLE_NANORC) && (!defined(NANO_TINY) || !defined(DISABLE_JUSTIFY))
David Lawrence Ramseyd5d4dde2005-06-14 01:55:56 +0000236bool has_blank_chars(const char *s);
237bool has_blank_mbchars(const char *s);
238#endif
David Lawrence Ramsey6ff695c2005-08-05 03:14:29 +0000239#ifdef ENABLE_UTF8
240bool is_valid_unicode(wchar_t wc);
241#endif
David Lawrence Ramseybdfa9272005-06-14 23:36:13 +0000242#ifdef ENABLE_NANORC
243bool is_valid_mbstring(const char *s);
244#endif
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000245
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000246/* All public functions in color.c. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000247#ifdef ENABLE_COLOR
David Lawrence Ramsey1f28b8f2002-09-27 14:21:59 +0000248void set_colorpairs(void);
David Lawrence Ramseydb958022005-07-13 20:18:46 +0000249void color_init(void);
David Lawrence Ramsey43cf7a12005-07-14 18:31:45 +0000250void color_update(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000251#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000252
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000253/* All public functions in cut.c. */
David Lawrence Ramseyc833d9e2004-05-29 15:36:58 +0000254void cutbuffer_reset(void);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000255void cut_line(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000256#ifndef NANO_TINY
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000257void cut_marked(void);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000258void cut_to_eol(void);
David Lawrence Ramsey41b89722006-05-21 20:03:43 +0000259void cut_to_eof(void);
David Lawrence Ramseyb80d49f2005-03-26 22:49:46 +0000260#endif
David Lawrence Ramseyc87e0c02006-04-25 02:23:28 +0000261void do_cut_text(
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000262#ifndef NANO_TINY
David Lawrence Ramsey41b89722006-05-21 20:03:43 +0000263 bool copy_text, bool cut_till_end
David Lawrence Ramseyc87e0c02006-04-25 02:23:28 +0000264#else
265 void
266#endif
267 );
268void do_cut_text_void(void);
269#ifndef NANO_TINY
270void do_copy_text(void);
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000271void do_cut_till_end(void);
272#endif
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000273void do_uncut_text(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000274
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000275/* All public functions in files.c. */
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000276void make_new_buffer(void);
David Lawrence Ramseyb386a902005-07-10 02:37:38 +0000277void initialize_buffer(void);
David Lawrence Ramseyc00513b2005-07-23 00:41:45 +0000278void initialize_buffer_text(void);
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000279void open_buffer(const char *filename);
David Lawrence Ramsey9c984e82005-11-08 19:15:58 +0000280#ifndef DISABLE_SPELLER
281void replace_buffer(const char *filename);
282#endif
David Lawrence Ramseye5c7e922005-07-12 23:06:22 +0000283void display_buffer(void);
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000284#ifdef ENABLE_MULTIBUFFER
285void switch_to_prevnext_buffer(bool next);
286void switch_to_prev_buffer_void(void);
287void switch_to_next_buffer_void(void);
288bool close_buffer(void);
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000289#endif
David Lawrence Ramsey50995bd2005-05-16 20:13:09 +0000290filestruct *read_line(char *buf, filestruct *prevnode, bool
David Lawrence Ramsey483f3ac2005-06-19 19:57:13 +0000291 *first_line_ins, size_t buf_len);
David Lawrence Ramsey02517e02004-09-05 21:40:31 +0000292void read_file(FILE *f, const char *filename);
293int open_file(const char *filename, bool newfie, FILE **f);
David Lawrence Ramseyb9b57222005-05-29 02:22:55 +0000294char *get_next_filename(const char *name, const char *suffix);
David Lawrence Ramseybe908f62004-10-01 18:34:30 +0000295void do_insertfile(
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000296#ifndef NANO_TINY
David Lawrence Ramseybe908f62004-10-01 18:34:30 +0000297 bool execute
298#else
299 void
300#endif
301 );
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000302void do_insertfile_void(void);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000303char *get_full_path(const char *origpath);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000304char *check_writable_directory(const char *path);
David Lawrence Ramsey5e068c62005-05-31 04:28:15 +0000305char *safe_tempfile(FILE **f);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000306#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000307void init_operating_dir(void);
David Lawrence Ramsey1b9d3f92005-02-11 20:09:11 +0000308bool check_operating_dir(const char *currpath, bool allow_tabcomp);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000309#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000310#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000311void init_backup_dir(void);
312#endif
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000313int copy_file(FILE *inn, FILE *out);
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000314int write_file(const char *name, FILE *f_open, bool tmp, append_type
315 append, bool nonamechange);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000316#ifndef NANO_TINY
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000317int write_marked_file(const char *name, FILE *f_open, bool tmp,
318 append_type append);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +0000319#endif
David Lawrence Ramsey951d7142004-10-04 15:23:47 +0000320int do_writeout(bool exiting);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000321void do_writeout_void(void);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000322char *real_dir_from_tilde(const char *buf);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000323#if !defined(DISABLE_TABCOMP) || !defined(DISABLE_BROWSER)
324int diralphasort(const void *va, const void *vb);
David Lawrence Ramseyab41ab92005-06-15 06:30:05 +0000325void free_chararray(char **array, size_t len);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000326#endif
Chris Allegretta7662c862003-01-13 01:35:15 +0000327#ifndef DISABLE_TABCOMP
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000328char **username_tab_completion(const char *buf, size_t *num_matches,
329 size_t buflen);
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000330char **cwd_tab_completion(const char *buf, bool allow_files, size_t
331 *num_matches, size_t buflen);
332char *input_tab(char *buf, bool allow_files, size_t *place, bool
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000333 *lastwastab, void (*refresh_func)(void), bool *list);
Chris Allegretta7662c862003-01-13 01:35:15 +0000334#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000335const char *tail(const char *foo);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000336#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000337char *histfilename(void);
David Lawrence Ramsey6420d442004-08-11 05:13:08 +0000338void load_history(void);
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000339bool writehist(FILE *hist, filestruct *histhead);
David Lawrence Ramsey6420d442004-08-11 05:13:08 +0000340void save_history(void);
341#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000342
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000343/* All public functions in global.c. */
David Lawrence Ramseyebd0d7c2004-07-01 18:59:52 +0000344size_t length_of_list(const shortcut *s);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000345#ifndef NANO_TINY
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000346void toggle_init_one(int val
347#ifndef DISABLE_HELP
348 , const char *desc, bool blank_after
349#endif
350 , long flag);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000351void toggle_init(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000352#endif
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000353void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000354#ifndef DISABLE_HELP
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000355 , const char *help, bool blank_after
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000356#endif
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000357 , int metaval, int funcval, int miscval, bool view, void
358 (*func)(void));
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000359void shortcut_init(bool unjustify);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000360void free_shortcutage(shortcut **shortcutage);
Chris Allegretta6232d662002-05-12 19:52:15 +0000361#ifdef DEBUG
Chris Allegrettadab017e2002-04-23 10:56:06 +0000362void thanks_for_all_the_fish(void);
Chris Allegretta6232d662002-05-12 19:52:15 +0000363#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000364
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000365/* All public functions in help.c. */
David Lawrence Ramsey7e2d6732005-11-01 19:32:45 +0000366#ifndef DISABLE_HELP
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000367void do_help(void (*refresh_func)(void));
368void do_help_void(void);
369#ifndef DISABLE_BROWSER
370void do_browser_help(void);
371#endif
David Lawrence Ramseyd420b5a2005-11-01 23:00:56 +0000372void help_init(void);
David Lawrence Ramseybc80cb12006-04-24 23:03:21 +0000373void parse_help_input(int *kbinput, bool *meta_key, bool *func_key);
David Lawrence Ramseyc3593012005-11-01 20:11:55 +0000374size_t help_line_len(const char *ptr);
David Lawrence Ramsey7e2d6732005-11-01 19:32:45 +0000375#endif
376
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000377/* All public functions in move.c. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000378void do_first_line(void);
379void do_last_line(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000380void do_page_up(void);
381void do_page_down(void);
David Lawrence Ramseyca62f9f2005-07-20 19:24:11 +0000382#ifndef DISABLE_JUSTIFY
383void do_para_begin(bool allow_update);
384void do_para_begin_void(void);
385void do_para_end(bool allow_update);
386void do_para_end_void(void);
387#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000388#ifndef NANO_TINY
David Lawrence Ramseyc4037f32005-07-20 21:31:19 +0000389bool do_next_word(bool allow_punct, bool allow_update);
390void do_next_word_void(void);
391bool do_prev_word(bool allow_punct, bool allow_update);
392void do_prev_word_void(void);
393#endif
David Lawrence Ramseyca62f9f2005-07-20 19:24:11 +0000394void do_home(void);
395void do_end(void);
David Lawrence Ramsey2c36e2e2006-07-06 22:17:47 +0000396void do_up(
397#ifndef NANO_TINY
398 bool scroll_only
399#else
400 void
401#endif
402 );
403void do_up_void(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000404#ifndef NANO_TINY
David Lawrence Ramsey2de84c12005-10-24 02:12:09 +0000405void do_scroll_up(void);
406#endif
David Lawrence Ramsey2c36e2e2006-07-06 22:17:47 +0000407void do_down(
408#ifndef NANO_TINY
409 bool scroll_only
410#else
411 void
412#endif
413 );
414void do_down_void(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000415#ifndef NANO_TINY
David Lawrence Ramsey2de84c12005-10-24 02:12:09 +0000416void do_scroll_down(void);
417#endif
David Lawrence Ramsey1c3bfa92005-09-13 04:53:44 +0000418void do_left(void);
419void do_right(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000420
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000421/* All public functions in nano.c. */
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000422filestruct *make_new_node(filestruct *prevnode);
423filestruct *copy_node(const filestruct *src);
424void splice_node(filestruct *begin, filestruct *newnode, filestruct
425 *end);
426void unlink_node(const filestruct *fileptr);
427void delete_node(filestruct *fileptr);
428filestruct *copy_filestruct(const filestruct *src);
429void free_filestruct(filestruct *src);
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000430void renumber(filestruct *fileptr);
431partition *partition_filestruct(filestruct *top, size_t top_x,
432 filestruct *bot, size_t bot_x);
433void unpartition_filestruct(partition **p);
434void move_to_filestruct(filestruct **file_top, filestruct **file_bot,
435 filestruct *top, size_t top_x, filestruct *bot, size_t bot_x);
436void copy_from_filestruct(filestruct *file_top, filestruct *file_bot);
David Lawrence Ramseye99494f2005-07-20 21:08:38 +0000437openfilestruct *make_new_opennode(void);
438void splice_opennode(openfilestruct *begin, openfilestruct *newnode,
439 openfilestruct *end);
440void unlink_opennode(openfilestruct *fileptr);
441void delete_opennode(openfilestruct *fileptr);
442#ifdef DEBUG
443void free_openfilestruct(openfilestruct *src);
444#endif
David Lawrence Ramsey50406662005-01-19 19:52:42 +0000445void print_view_warning(void);
David Lawrence Ramseyda141062004-05-25 19:41:11 +0000446void finish(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000447void die(const char *msg, ...);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000448void die_save_file(const char *die_filename);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000449void window_init(void);
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +0000450#ifndef DISABLE_MOUSE
David Lawrence Ramsey503bad02006-06-09 18:24:37 +0000451void disable_mouse_support(void);
452void enable_mouse_support(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000453void mouse_init(void);
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000454#endif
David Lawrence Ramsey660e05b2006-05-12 19:30:28 +0000455void print_opt_full(const char *shortflag
David Lawrence Ramsey39e8ce62005-03-21 07:24:47 +0000456#ifdef HAVE_GETOPT_LONG
457 , const char *longflag
458#endif
459 , const char *desc);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000460void usage(void);
461void version(void);
David Lawrence Ramsey637b8bb2005-01-17 05:06:55 +0000462int no_more_space(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000463int no_help(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000464void nano_disabled_msg(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000465void do_exit(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000466void signal_init(void);
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000467RETSIGTYPE handle_hupterm(int signal);
468RETSIGTYPE do_suspend(int signal);
469RETSIGTYPE do_continue(int signal);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000470#ifndef NANO_TINY
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000471RETSIGTYPE handle_sigwinch(int signal);
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000472void allow_pending_sigwinch(bool allow);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000473#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000474#ifndef NANO_TINY
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000475void do_toggle(const toggle *which);
476#endif
David Lawrence Ramsey8bcac8a2005-06-09 04:02:57 +0000477void disable_extended_io(void);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000478void disable_signals(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000479#ifndef NANO_TINY
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000480void enable_signals(void);
481#endif
482void disable_flow_control(void);
483void enable_flow_control(void);
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +0000484void terminal_init(void);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000485int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
David Lawrence Ramseycac02932005-01-11 23:05:05 +0000486 *ran_func, bool *finished, bool allow_funcs);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000487#ifndef DISABLE_MOUSE
488bool do_mouse(void);
489#endif
David Lawrence Ramseyefec6412005-03-17 03:52:08 +0000490void do_output(char *output, size_t output_len, bool allow_cntrls);
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000491
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000492/* All public functions in prompt.c. */
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000493int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000494 bool *ran_func, bool *finished, bool allow_funcs, void
495 (*refresh_func)(void));
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000496#ifndef DISABLE_MOUSE
497bool do_statusbar_mouse(void);
498#endif
499void do_statusbar_output(char *output, size_t output_len, bool
David Lawrence Ramsey81371022006-11-27 04:56:16 +0000500 *got_enter, bool allow_cntrls);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000501void do_statusbar_home(void);
502void do_statusbar_end(void);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000503void do_statusbar_left(void);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000504void do_statusbar_right(void);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000505void do_statusbar_backspace(void);
506void do_statusbar_delete(void);
507void do_statusbar_cut_text(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000508#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000509bool do_statusbar_next_word(bool allow_punct);
510bool do_statusbar_prev_word(bool allow_punct);
511#endif
512void do_statusbar_verbatim_input(bool *got_enter);
David Lawrence Ramseyc4993822005-11-16 04:14:03 +0000513#ifndef NANO_TINY
David Lawrence Ramsey5ab56ea2005-11-16 13:45:41 +0000514bool find_statusbar_bracket_match(bool reverse, const char
515 *bracket_set);
David Lawrence Ramseyc4993822005-11-16 04:14:03 +0000516void do_statusbar_find_bracket(void);
517#endif
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000518size_t statusbar_xplustabs(void);
519size_t get_statusbar_page_start(size_t start_col, size_t column);
David Lawrence Ramseye19449e2005-11-07 21:45:44 +0000520void reset_statusbar_cursor(void);
David Lawrence Ramsey60edb0a2006-05-15 15:17:50 +0000521void update_statusbar_line(const char *curranswer, size_t index);
David Lawrence Ramseyfa387952006-08-26 16:50:51 +0000522bool need_statusbar_horizontal_update(size_t pww_save);
David Lawrence Ramsey60edb0a2006-05-15 15:17:50 +0000523void total_statusbar_refresh(void (*refresh_func)(void));
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000524int get_prompt_string(bool allow_tabs,
525#ifndef DISABLE_TABCOMP
526 bool allow_files,
527#endif
528 const char *curranswer,
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000529#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000530 filestruct **history_list,
531#endif
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000532 void (*refresh_func)(void), const shortcut *s
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000533#ifndef DISABLE_TABCOMP
534 , bool *list
535#endif
536 );
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000537int do_prompt(bool allow_tabs,
538#ifndef DISABLE_TABCOMP
539 bool allow_files,
540#endif
541 const shortcut *s, const char *curranswer,
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000542#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000543 filestruct **history_list,
544#endif
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000545 void (*refresh_func)(void), const char *msg, ...);
David Lawrence Ramseye19449e2005-11-07 21:45:44 +0000546void do_prompt_abort(void);
547int do_yesno_prompt(bool all, const char *msg);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000548
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000549/* All public functions in rcfile.c. */
Chris Allegretta7a500092001-04-19 21:13:46 +0000550#ifdef ENABLE_NANORC
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000551void rcfile_error(const char *msg, ...);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000552char *parse_next_word(char *ptr);
553char *parse_argument(char *ptr);
554#ifdef ENABLE_COLOR
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000555char *parse_next_regex(char *ptr);
David Lawrence Ramsey2385c1a2005-07-29 21:42:08 +0000556bool nregcomp(const char *regex, int eflags);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000557void parse_syntax(char *ptr);
David Lawrence Ramseycee20e52006-04-13 02:43:54 +0000558void parse_include(char *ptr);
David Lawrence Ramseya8239c32006-05-28 22:24:03 +0000559short color_to_short(const char *colorname, bool *bright);
David Lawrence Ramsey23555f22005-06-27 03:07:10 +0000560void parse_colors(char *ptr, bool icase);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000561#endif
David Lawrence Ramseycee20e52006-04-13 02:43:54 +0000562void parse_rcfile(FILE *rcstream
563#ifdef ENABLE_COLOR
564 , bool syntax_only
565#endif
566 );
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000567void do_rcfile(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000568#endif
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000569
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000570/* All public functions in search.c. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000571#ifdef HAVE_REGEX_H
Chris Allegretta5d715142003-01-29 04:18:37 +0000572int regexp_init(const char *regexp);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000573void regexp_cleanup(void);
574#endif
575void not_found_msg(const char *str);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000576void search_replace_abort(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000577void search_init_globals(void);
David Lawrence Ramseyd532f192004-10-04 22:37:56 +0000578int search_init(bool replacing, bool use_answer);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000579bool findnextstr(
580#ifndef DISABLE_SPELLER
581 bool whole_word,
582#endif
583 bool no_sameline, const filestruct *begin, size_t begin_x, const
584 char *needle, size_t *needle_len);
David Lawrence Ramseye5e88fd2004-10-31 13:20:30 +0000585void findnextstr_wrap_reset(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000586void do_search(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000587#ifndef NANO_TINY
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000588void do_research(void);
David Lawrence Ramsey5aa39832004-05-05 21:36:50 +0000589#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000590#ifdef HAVE_REGEX_H
David Lawrence Ramseye3970f52005-05-26 03:47:24 +0000591int replace_regexp(char *string, bool create);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000592#endif
David Lawrence Ramsey1044d742004-02-24 20:41:39 +0000593char *replace_line(const char *needle);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000594ssize_t do_replace_loop(
595#ifndef DISABLE_SPELLER
596 bool whole_word,
597#endif
598 bool *canceled, const filestruct *real_current, size_t
599 *real_current_x, const char *needle);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000600void do_replace(void);
David Lawrence Ramsey5beae582005-06-29 00:17:18 +0000601void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
David Lawrence Ramsey8f1afee2005-07-16 07:06:36 +0000602 bool interactive, bool save_pos, bool allow_update);
David Lawrence Ramsey9245f972005-05-17 18:06:26 +0000603void do_gotolinecolumn_void(void);
David Lawrence Ramsey8f4762a2005-07-16 22:35:11 +0000604#ifndef DISABLE_SPELLER
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000605void do_gotopos(ssize_t pos_line, size_t pos_x, ssize_t pos_y, size_t
David Lawrence Ramsey2cf6d712005-06-28 06:25:34 +0000606 pos_pww);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000607#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000608#ifndef NANO_TINY
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000609bool find_bracket_match(bool reverse, const char *bracket_set);
David Lawrence Ramseyc4ca5962005-06-16 20:58:19 +0000610void do_find_bracket(void);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000611#ifdef ENABLE_NANORC
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000612bool history_has_changed(void);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000613#endif
Chris Allegretta5beed502003-01-05 20:41:21 +0000614void history_init(void);
David Lawrence Ramsey0e581b32005-07-18 07:48:50 +0000615void history_reset(const filestruct *h);
David Lawrence Ramsey96e6d562005-07-19 04:53:45 +0000616filestruct *find_history(const filestruct *h_start, const filestruct
617 *h_end, const char *s, size_t len);
David Lawrence Ramsey34bdc352005-06-02 18:41:31 +0000618void update_history(filestruct **h, const char *s);
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000619char *get_history_older(filestruct **h);
620char *get_history_newer(filestruct **h);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000621#ifndef DISABLE_TABCOMP
David Lawrence Ramsey96e6d562005-07-19 04:53:45 +0000622char *get_history_completion(filestruct **h, const char *s, size_t len);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000623#endif
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000624#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000625
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000626/* All public functions in text.c. */
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000627#ifndef NANO_TINY
David Lawrence Ramsey7ea09e52005-07-25 02:41:59 +0000628void do_mark(void);
629#endif
630void do_delete(void);
631void do_backspace(void);
632void do_tab(void);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000633#ifndef NANO_TINY
David Lawrence Ramseyaee00d42006-07-05 18:42:22 +0000634void do_indent(ssize_t cols);
635void do_indent_void(void);
636void do_unindent(void);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000637#endif
David Lawrence Ramsey7ea09e52005-07-25 02:41:59 +0000638void do_enter(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000639#ifndef NANO_TINY
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000640RETSIGTYPE cancel_command(int signal);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000641bool execute_command(const char *command);
642#endif
643#ifndef DISABLE_WRAPPING
644void wrap_reset(void);
645bool do_wrap(filestruct *line);
646#endif
David Lawrence Ramseyc7c04bb2005-11-29 21:30:00 +0000647#if !defined(DISABLE_HELP) || !defined(DISABLE_WRAPJUSTIFY)
David Lawrence Ramseyb9b2fd52005-11-22 21:13:36 +0000648ssize_t break_line(const char *line, ssize_t goal
649#ifndef DISABLE_HELP
650 , bool newline
651#endif
652 );
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000653#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000654#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000655size_t indent_length(const char *line);
656#endif
657#ifndef DISABLE_JUSTIFY
658void justify_format(filestruct *paragraph, size_t skip);
659size_t quote_length(const char *line);
660bool quotes_match(const char *a_line, size_t a_quote, const char
661 *b_line);
662bool indents_match(const char *a_line, size_t a_indent, const char
663 *b_line, size_t b_indent);
664bool begpar(const filestruct *const foo);
665bool inpar(const filestruct *const foo);
David Lawrence Ramseycd8f7352005-11-10 21:20:32 +0000666void backup_lines(filestruct *first_line, size_t par_len);
David Lawrence Ramsey79383be2005-11-29 18:34:45 +0000667bool find_paragraph(size_t *const quote, size_t *const par);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000668void do_justify(bool full_justify);
669void do_justify_void(void);
670void do_full_justify(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000671#endif
David Lawrence Ramseycc8185f2005-07-25 02:33:45 +0000672#ifndef DISABLE_SPELLER
673bool do_int_spell_fix(const char *word);
674const char *do_int_speller(const char *tempfile_name);
675const char *do_alt_speller(char *tempfile_name);
676void do_spell(void);
677#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000678#ifndef NANO_TINY
David Lawrence Ramsey8e942342005-07-25 04:21:46 +0000679void do_wordlinechar_count(void);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000680#endif
David Lawrence Ramsey37ddfa92005-11-07 06:06:05 +0000681void do_verbatim_input(void);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000682
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000683/* All public functions in utils.c. */
David Lawrence Ramseyc596c0c2005-04-19 16:32:08 +0000684int digits(size_t n);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000685void get_homedir(void);
David Lawrence Ramseyc53ab2a2004-08-04 18:24:53 +0000686bool parse_num(const char *str, ssize_t *val);
David Lawrence Ramsey2cf6d712005-06-28 06:25:34 +0000687bool parse_line_column(const char *str, ssize_t *line, ssize_t *column);
David Lawrence Ramsey6a0d5b82005-06-13 14:00:22 +0000688void align(char **str);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000689void null_at(char **data, size_t index);
690void unsunder(char *str, size_t true_len);
691void sunder(char *str);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000692#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000693#ifndef HAVE_GETLINE
694ssize_t ngetline(char **lineptr, size_t *n, FILE *stream);
695#endif
696#ifndef HAVE_GETDELIM
697ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream);
698#endif
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000699#endif
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000700#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000701bool regexp_bol_or_eol(const regex_t *preg, const char *string);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000702#endif
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000703#ifndef DISABLE_SPELLER
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000704bool is_whole_word(size_t pos, const char *buf, const char *word);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000705#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000706const char *strstrwrapper(const char *haystack, const char *needle,
David Lawrence Ramsey1044d742004-02-24 20:41:39 +0000707 const char *start);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000708void nperror(const char *s);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000709void *nmalloc(size_t howmuch);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000710void *nrealloc(void *ptr, size_t howmuch);
David Lawrence Ramsey4a1fc552004-11-02 15:18:30 +0000711char *mallocstrncpy(char *dest, const char *src, size_t n);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000712char *mallocstrcpy(char *dest, const char *src);
David Lawrence Ramsey02517e02004-09-05 21:40:31 +0000713char *mallocstrassn(char *dest, char *src);
David Lawrence Ramsey2b9d6a02005-11-01 17:45:31 +0000714size_t get_page_start(size_t column);
David Lawrence Ramsey81c4e182005-10-31 23:07:58 +0000715size_t xplustabs(void);
716size_t actual_x(const char *s, size_t column);
717size_t strnlenpt(const char *s, size_t maxlen);
718size_t strlenpt(const char *s);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000719void new_magicline(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000720#ifndef NANO_TINY
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000721void remove_magicline(void);
David Lawrence Ramseyf7080372004-07-08 17:15:10 +0000722void mark_order(const filestruct **top, size_t *top_x, const filestruct
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +0000723 **bot, size_t *bot_x, bool *right_side_up);
David Lawrence Ramsey5ffbec52003-09-16 01:16:49 +0000724#endif
David Lawrence Ramseyc104ef12005-07-17 01:44:35 +0000725size_t get_totsize(const filestruct *begin, const filestruct *end);
David Lawrence Ramsey00cc5652005-11-02 15:44:01 +0000726#ifdef DEBUG
727void dump_filestruct(const filestruct *inptr);
728void dump_filestruct_reverse(void);
729#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000730
David Lawrence Ramsey4fd1ca02006-11-27 05:09:16 +0000731/* All public functions in winio.c. */
David Lawrence Ramseydb958022005-07-13 20:18:46 +0000732void get_key_buffer(WINDOW *win);
733size_t get_key_buffer_len(void);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000734void unget_input(int *input, size_t input_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000735void unget_kbinput(int kbinput, bool meta_key, bool func_key);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000736int *get_input(WINDOW *win, size_t input_len);
David Lawrence Ramseyeb16f432004-09-27 01:04:50 +0000737int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000738int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
David Lawrence Ramsey1b4ae692006-07-25 19:23:35 +0000739int get_escape_seq_kbinput(const int *seq, size_t seq_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000740int get_escape_seq_abcd(int kbinput);
David Lawrence Ramsey5370b0c2006-07-23 17:54:35 +0000741int parse_escape_seq_kbinput(WINDOW *win, int kbinput);
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000742int get_byte_kbinput(int kbinput);
David Lawrence Ramsey6fb66892006-05-27 17:39:19 +0000743#ifdef ENABLE_UTF8
David Lawrence Ramsey12e37082006-05-27 15:52:26 +0000744long add_unicode_digit(int kbinput, long factor, long *uni);
David Lawrence Ramsey7f1b1192006-05-28 17:30:28 +0000745long get_unicode_kbinput(int kbinput);
David Lawrence Ramsey6fb66892006-05-27 17:39:19 +0000746#endif
David Lawrence Ramsey48ae9862004-05-28 17:23:33 +0000747int get_control_kbinput(int kbinput);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000748void unparse_kbinput(char *output, size_t output_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000749int *get_verbatim_kbinput(WINDOW *win, size_t *kbinput_len);
750int *parse_verbatim_kbinput(WINDOW *win, size_t *kbinput_len);
David Lawrence Ramsey14bf8032004-05-22 20:19:15 +0000751#ifndef DISABLE_MOUSE
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +0000752bool get_mouseinput(int *mouse_x, int *mouse_y, bool allow_shortcuts);
753#endif
David Lawrence Ramsey1483ee32004-11-29 00:30:07 +0000754const shortcut *get_shortcut(const shortcut *s_list, int *kbinput, bool
David Lawrence Ramseyeb16f432004-09-27 01:04:50 +0000755 *meta_key, bool *func_key);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000756#ifndef NANO_TINY
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +0000757const toggle *get_toggle(int kbinput, bool meta_key);
758#endif
David Lawrence Ramseyb386a902005-07-10 02:37:38 +0000759void blank_line(WINDOW *win, int y, int x, int n);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000760void blank_titlebar(void);
David Lawrence Ramsey637b8bb2005-01-17 05:06:55 +0000761void blank_topbar(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000762void blank_edit(void);
763void blank_statusbar(void);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000764void blank_bottombars(void);
David Lawrence Ramseyb9ddb802005-03-17 17:56:48 +0000765void check_statusblank(void);
David Lawrence Ramseyfc693212004-12-23 17:43:27 +0000766char *display_string(const char *buf, size_t start_col, size_t len, bool
767 dollars);
Chris Allegrettaf717f982003-02-13 22:25:01 +0000768void titlebar(const char *path);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000769void set_modified(void);
770void statusbar(const char *msg, ...);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000771void bottombars(const shortcut *s);
David Lawrence Ramseyfa394042004-05-23 21:11:14 +0000772void onekey(const char *keystroke, const char *desc, size_t len);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000773void reset_cursor(void);
David Lawrence Ramseya0aff672005-10-27 20:10:45 +0000774void edit_draw(const filestruct *fileptr, const char *converted, int
775 line, size_t start);
David Lawrence Ramsey5ffbec52003-09-16 01:16:49 +0000776void update_line(const filestruct *fileptr, size_t index);
David Lawrence Ramseyfa387952006-08-26 16:50:51 +0000777bool need_horizontal_update(size_t pww_save);
778bool need_vertical_update(size_t pww_save);
David Lawrence Ramsey107e8162005-08-01 21:05:29 +0000779void edit_scroll(scroll_dir direction, ssize_t nlines);
David Lawrence Ramseyfa387952006-08-26 16:50:51 +0000780void edit_redraw(const filestruct *old_current, size_t pww_save);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000781void edit_refresh(void);
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000782void edit_update(update_type location);
David Lawrence Ramseyc54c4d12005-06-18 15:49:17 +0000783void total_redraw(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000784void total_refresh(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000785void display_main_list(void);
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +0000786void do_cursorpos(bool constant);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000787void do_cursorpos_void(void);
David Lawrence Ramsey7bde0532005-06-30 03:55:55 +0000788void do_replace_highlight(bool highlight, const char *word);
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000789#ifdef NANO_EXTRA
Chris Allegretta34318ed2001-01-31 23:22:36 +0000790void do_credits(void);
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000791#endif
David Lawrence Ramseye527e452005-04-15 18:07:26 +0000792
793#endif /* !PROTO_H */