blob: aeb409dbb1f2fc47a549880de0c74717e95368c5 [file] [log] [blame]
Chris Allegretta11b00112000-08-06 21:13:45 +00001/* $Id$ */
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002/**************************************************************************
3 * proto.h *
4 * *
Chris Allegretta8a07a962009-12-02 03:36:22 +00005 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, *
6 * 2008, 2009 Free Software Foundation, Inc. *
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 *
David Lawrence Ramseyd0035b42007-08-11 05:17:36 +00009 * the Free Software Foundation; either version 3, 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 Ramsey6335fb52007-01-01 05:15:32 +000029/* All external variables. See global.c for their descriptions. */
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +000030#ifndef NANO_TINY
David Lawrence Ramsey1c5af642006-05-10 15:15:06 +000031extern sigjmp_buf jump_buf;
32extern bool jump_buf_main;
Chris Allegrettaad37e672009-07-12 03:36:58 +000033extern bool use_undo;
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
Chris Allegrettaa48507d2009-08-14 03:18:29 +000044extern unsigned flags[4];
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000045extern WINDOW *topwin;
46extern WINDOW *edit;
47extern WINDOW *bottomwin;
48extern int editwinrows;
Chris Allegretta8c1edd12009-11-16 04:28:40 +000049extern int maxrows;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000050
51extern filestruct *cutbuffer;
Chris Allegretta12dc8ca2008-07-31 04:24:04 +000052extern filestruct *cutbottom;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000053#ifndef DISABLE_JUSTIFY
54extern filestruct *jusbuffer;
55#endif
56extern partition *filepart;
57extern openfilestruct *openfile;
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000058
David Lawrence Ramseyd89617f2006-01-06 21:51:10 +000059#ifndef NANO_TINY
60extern char *matchbrackets;
61#endif
62
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000063#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000064extern char *whitespace;
David Lawrence Ramsey6e60db62005-03-10 22:52:21 +000065extern int whitespace_len[2];
Chris Allegretta07fcc4c2008-07-10 20:13:04 +000066extern undo_type last_action;
David Lawrence Ramsey89bb9372004-05-29 16:47:52 +000067#endif
68
Chris Allegrettae4f940d2002-03-03 22:36:36 +000069#ifndef DISABLE_JUSTIFY
David Lawrence Ramsey2c62b072004-05-29 16:38:57 +000070extern char *punct;
71extern char *brackets;
Chris Allegretta45329a12002-03-10 01:22:21 +000072extern char *quotestr;
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +000073#ifdef HAVE_REGEX_H
74extern regex_t quotereg;
75extern int quoterc;
76extern char *quoteerr;
77#else
78extern size_t quotelen;
79#endif
Chris Allegrettae4f940d2002-03-03 22:36:36 +000080#endif
Chris Allegrettaf86fa862009-02-25 04:32:15 +000081extern bool nodelay_mode;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000082extern char *answer;
83
84extern ssize_t tabsize;
85
David Lawrence Ramseyebe34252005-11-15 03:17:35 +000086#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +000087extern char *backup_dir;
88#endif
Chris Allegrettae1f14522001-09-19 03:19:43 +000089#ifndef DISABLE_OPERATINGDIR
90extern char *operating_dir;
Chris Allegrettaf5de33a2002-02-27 04:14:16 +000091extern char *full_operating_dir;
Chris Allegrettae1f14522001-09-19 03:19:43 +000092#endif
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +000093
Chris Allegretta8d8e0122001-04-18 04:28:54 +000094#ifndef DISABLE_SPELLER
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +000095extern char *alt_speller;
Chris Allegretta6df90f52002-07-19 01:08:59 +000096#endif
97
Chris Allegretta79a33bb2008-03-05 07:34:01 +000098extern sc *sclist;
99extern subnfunc *allfuncs;
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000100#ifdef ENABLE_COLOR
101extern syntaxtype *syntaxes;
102extern char *syntaxstr;
Chris Allegrettaf4b96012001-01-03 07:11:47 +0000103#endif
Chris Allegretta201f1d92003-02-05 02:51:19 +0000104
Chris Allegrettafd265af2009-02-06 03:41:02 +0000105extern bool edit_refresh_needed;
Chris Allegretta6df90f52002-07-19 01:08:59 +0000106extern const shortcut *currshortcut;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000107extern int currmenu;
Chris Allegretta805c26d2000-09-06 13:39:17 +0000108
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000109#ifndef NANO_TINY
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000110extern filestruct *search_history;
111extern filestruct *searchage;
112extern filestruct *searchbot;
113extern filestruct *replace_history;
114extern filestruct *replaceage;
115extern filestruct *replacebot;
Chris Allegretta9bfda912011-02-16 06:52:30 +0000116extern poshiststruct *poshistory;
Chris Allegretta8e2a9302011-02-18 07:30:57 +0000117void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos);
Chris Allegretta5beed502003-01-05 20:41:21 +0000118#endif
119
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000120#ifdef HAVE_REGEX_H
121extern regex_t search_regexp;
122extern regmatch_t regmatches[10];
123#endif
124
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000125extern int reverse_attr;
Chris Allegrettaa0d89972003-02-03 03:32:08 +0000126
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000127extern char *homedir;
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000128
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000129/* All functions in browser.c. */
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000130#ifndef DISABLE_BROWSER
David Lawrence Ramseyb08c9f02006-07-11 18:12:24 +0000131char *do_browser(char *path, DIR *dir);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000132char *do_browse_from(const char *inpath);
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000133void browser_init(const char *path, DIR *dir);
David Lawrence Ramsey91a2a692006-02-07 04:41:44 +0000134void parse_browser_input(int *kbinput, bool *meta_key, bool *func_key);
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000135void browser_refresh(void);
David Lawrence Ramseya43b1082006-06-30 22:28:37 +0000136bool browser_select_filename(const char *needle);
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000137int filesearch_init(void);
138bool findnextfile(bool no_sameline, size_t begin, const char *needle);
139void findnextfile_wrap_reset(void);
140void filesearch_abort(void);
141void do_filesearch(void);
142void do_fileresearch(void);
143void do_first_file(void);
144void do_last_file(void);
David Lawrence Ramseya4e92c82006-06-30 14:14:40 +0000145char *striponedir(const char *path);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000146#endif
147
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000148/* All functions in chars.c. */
David Lawrence Ramsey4d72de72006-04-12 15:27:40 +0000149#ifdef ENABLE_UTF8
150void utf8_init(void);
151bool using_utf8(void);
152#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000153#ifndef HAVE_ISBLANK
David Lawrence Ramsey1aee5cc2005-06-29 18:17:54 +0000154bool nisblank(int c);
David Lawrence Ramsey77abec72005-03-16 17:00:27 +0000155#endif
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000156#if !defined(HAVE_ISWBLANK) && defined(ENABLE_UTF8)
David Lawrence Ramsey1aee5cc2005-06-29 18:17:54 +0000157bool niswblank(wchar_t wc);
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000158#endif
David Lawrence Ramsey356d2482005-06-13 19:51:56 +0000159bool is_byte(int c);
David Lawrence Ramsey2515ccc2005-06-15 06:04:08 +0000160bool is_alnum_mbchar(const char *c);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000161bool is_blank_mbchar(const char *c);
David Lawrence Ramsey8e341e12006-05-24 17:36:00 +0000162bool is_ascii_cntrl_char(int c);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000163bool is_cntrl_char(int c);
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000164#ifdef ENABLE_UTF8
David Lawrence Ramseyed7ad332005-06-15 16:07:14 +0000165bool is_cntrl_wchar(wchar_t wc);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000166#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000167bool is_cntrl_mbchar(const char *c);
David Lawrence Ramsey2515ccc2005-06-15 06:04:08 +0000168bool is_punct_mbchar(const char *c);
David Lawrence Ramseye2213112005-06-15 03:03:45 +0000169bool is_word_mbchar(const char *c, bool allow_punct);
David Lawrence Ramsey19462612005-06-12 18:05:42 +0000170char control_rep(char c);
David Lawrence Ramsey7eb30a82005-07-17 02:40:07 +0000171#ifdef ENABLE_UTF8
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000172wchar_t control_wrep(wchar_t c);
173#endif
David Lawrence Ramseyd8640482005-06-12 17:48:46 +0000174char *control_mbrep(const char *c, char *crep, int *crep_len);
David Lawrence Ramsey96452cb2005-07-26 06:13:45 +0000175char *mbrep(const char *c, char *crep, int *crep_len);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000176int mbwidth(const char *c);
177int mb_cur_max(void);
David Lawrence Ramsey8b006c22005-08-08 23:03:25 +0000178char *make_mbchar(long chr, int *chr_mb_len);
David Lawrence Ramsey96452cb2005-07-26 06:13:45 +0000179int parse_mbchar(const char *buf, char *chr, size_t *col);
David Lawrence Ramseyd24fbb72005-01-14 21:50:32 +0000180size_t move_mbleft(const char *buf, size_t pos);
181size_t move_mbright(const char *buf, size_t pos);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000182#ifndef HAVE_STRCASECMP
183int nstrcasecmp(const char *s1, const char *s2);
184#endif
185int mbstrcasecmp(const char *s1, const char *s2);
186#ifndef HAVE_STRNCASECMP
187int nstrncasecmp(const char *s1, const char *s2, size_t n);
188#endif
189int mbstrncasecmp(const char *s1, const char *s2, size_t n);
190#ifndef HAVE_STRCASESTR
David Lawrence Ramseyae46b912007-07-06 13:44:13 +0000191char *nstrcasestr(const char *haystack, const char *needle);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000192#endif
David Lawrence Ramseyae46b912007-07-06 13:44:13 +0000193char *mbstrcasestr(const char *haystack, const char *needle);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000194#if !defined(NANO_TINY) || !defined(DISABLE_TABCOMP)
David Lawrence Ramseyae46b912007-07-06 13:44:13 +0000195char *revstrstr(const char *haystack, const char *needle, const char
196 *rev_start);
David Lawrence Ramsey7b601fd2005-06-13 13:25:36 +0000197#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000198#ifndef NANO_TINY
David Lawrence Ramseyae46b912007-07-06 13:44:13 +0000199char *revstrcasestr(const char *haystack, const char *needle, const char
200 *rev_start);
201char *mbrevstrcasestr(const char *haystack, const char *needle, const
202 char *rev_start);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000203#endif
David Lawrence Ramsey3f9c6352005-01-25 19:21:11 +0000204size_t mbstrlen(const char *s);
David Lawrence Ramsey3a1fc8f2005-01-16 18:49:19 +0000205#ifndef HAVE_STRNLEN
206size_t nstrnlen(const char *s, size_t maxlen);
207#endif
208size_t mbstrnlen(const char *s, size_t maxlen);
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000209#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
210char *mbstrchr(const char *s, const char *c);
211#endif
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000212#ifndef NANO_TINY
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000213char *mbstrpbrk(const char *s, const char *accept);
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000214char *revstrpbrk(const char *s, const char *accept, const char
215 *rev_start);
David Lawrence Ramseya2488632006-01-06 07:10:30 +0000216char *mbrevstrpbrk(const char *s, const char *accept, const char
217 *rev_start);
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000218#endif
David Lawrence Ramsey1a16df92006-01-06 22:04:38 +0000219#if defined(ENABLE_NANORC) && (!defined(NANO_TINY) || !defined(DISABLE_JUSTIFY))
David Lawrence Ramseyd5d4dde2005-06-14 01:55:56 +0000220bool has_blank_chars(const char *s);
221bool has_blank_mbchars(const char *s);
222#endif
David Lawrence Ramsey6ff695c2005-08-05 03:14:29 +0000223#ifdef ENABLE_UTF8
224bool is_valid_unicode(wchar_t wc);
225#endif
David Lawrence Ramseybdfa9272005-06-14 23:36:13 +0000226#ifdef ENABLE_NANORC
227bool is_valid_mbstring(const char *s);
228#endif
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000229
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000230/* All functions in color.c. */
Chris Allegretta6df90f52002-07-19 01:08:59 +0000231#ifdef ENABLE_COLOR
David Lawrence Ramsey1f28b8f2002-09-27 14:21:59 +0000232void set_colorpairs(void);
David Lawrence Ramseydb958022005-07-13 20:18:46 +0000233void color_init(void);
David Lawrence Ramsey43cf7a12005-07-14 18:31:45 +0000234void color_update(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000235#endif
Chris Allegrettaa2ea1932000-06-06 05:53:49 +0000236
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000237/* All functions in cut.c. */
David Lawrence Ramseyc833d9e2004-05-29 15:36:58 +0000238void cutbuffer_reset(void);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000239void cut_line(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000240#ifndef NANO_TINY
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000241void cut_marked(void);
David Lawrence Ramsey93c84052004-11-23 04:08:28 +0000242void cut_to_eol(void);
David Lawrence Ramsey41b89722006-05-21 20:03:43 +0000243void cut_to_eof(void);
David Lawrence Ramseyb80d49f2005-03-26 22:49:46 +0000244#endif
David Lawrence Ramseyc87e0c02006-04-25 02:23:28 +0000245void do_cut_text(
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000246#ifndef NANO_TINY
Chris Allegretta91a18622008-08-01 03:50:20 +0000247 bool copy_text, bool cut_till_end, bool undoing
David Lawrence Ramseyc87e0c02006-04-25 02:23:28 +0000248#else
249 void
250#endif
251 );
252void do_cut_text_void(void);
253#ifndef NANO_TINY
254void do_copy_text(void);
David Lawrence Ramsey295d1722005-01-01 07:43:32 +0000255void do_cut_till_end(void);
256#endif
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000257void do_uncut_text(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000258
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000259/* All functions in files.c. */
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000260void make_new_buffer(void);
David Lawrence Ramseyb386a902005-07-10 02:37:38 +0000261void initialize_buffer(void);
David Lawrence Ramseyc00513b2005-07-23 00:41:45 +0000262void initialize_buffer_text(void);
Chris Allegretta14c86202008-08-03 04:48:05 +0000263void open_buffer(const char *filename, bool undoable);
David Lawrence Ramsey9c984e82005-11-08 19:15:58 +0000264#ifndef DISABLE_SPELLER
265void replace_buffer(const char *filename);
266#endif
David Lawrence Ramseye5c7e922005-07-12 23:06:22 +0000267void display_buffer(void);
David Lawrence Ramsey6ad59cd2005-07-08 20:09:16 +0000268#ifdef ENABLE_MULTIBUFFER
269void switch_to_prevnext_buffer(bool next);
270void switch_to_prev_buffer_void(void);
271void switch_to_next_buffer_void(void);
272bool close_buffer(void);
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000273#endif
David Lawrence Ramsey50995bd2005-05-16 20:13:09 +0000274filestruct *read_line(char *buf, filestruct *prevnode, bool
David Lawrence Ramsey483f3ac2005-06-19 19:57:13 +0000275 *first_line_ins, size_t buf_len);
Chris Allegretta2c7b5062009-12-09 16:51:43 +0000276void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkwritable);
David Lawrence Ramsey02517e02004-09-05 21:40:31 +0000277int open_file(const char *filename, bool newfie, FILE **f);
David Lawrence Ramseyb9b57222005-05-29 02:22:55 +0000278char *get_next_filename(const char *name, const char *suffix);
David Lawrence Ramseybe908f62004-10-01 18:34:30 +0000279void do_insertfile(
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000280#ifndef NANO_TINY
David Lawrence Ramseybe908f62004-10-01 18:34:30 +0000281 bool execute
282#else
283 void
284#endif
285 );
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000286void do_insertfile_void(void);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000287char *get_full_path(const char *origpath);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000288char *check_writable_directory(const char *path);
David Lawrence Ramsey5e068c62005-05-31 04:28:15 +0000289char *safe_tempfile(FILE **f);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000290#ifndef DISABLE_OPERATINGDIR
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000291void init_operating_dir(void);
David Lawrence Ramsey1b9d3f92005-02-11 20:09:11 +0000292bool check_operating_dir(const char *currpath, bool allow_tabcomp);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000293#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000294#ifndef NANO_TINY
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000295void init_backup_dir(void);
296#endif
David Lawrence Ramsey819c7f02004-07-30 03:54:34 +0000297int copy_file(FILE *inn, FILE *out);
David Lawrence Ramsey4154d082007-01-11 21:36:29 +0000298bool write_file(const char *name, FILE *f_open, bool tmp, append_type
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000299 append, bool nonamechange);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000300#ifndef NANO_TINY
David Lawrence Ramsey4154d082007-01-11 21:36:29 +0000301bool write_marked_file(const char *name, FILE *f_open, bool tmp,
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000302 append_type append);
David Lawrence Ramsey35961c42004-01-23 19:34:03 +0000303#endif
David Lawrence Ramsey4154d082007-01-11 21:36:29 +0000304bool do_writeout(bool exiting);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000305void do_writeout_void(void);
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000306char *real_dir_from_tilde(const char *buf);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000307#if !defined(DISABLE_TABCOMP) || !defined(DISABLE_BROWSER)
308int diralphasort(const void *va, const void *vb);
David Lawrence Ramseyab41ab92005-06-15 06:30:05 +0000309void free_chararray(char **array, size_t len);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000310#endif
Chris Allegretta7662c862003-01-13 01:35:15 +0000311#ifndef DISABLE_TABCOMP
David Lawrence Ramsey4154d082007-01-11 21:36:29 +0000312bool is_dir(const char *buf);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000313char **username_tab_completion(const char *buf, size_t *num_matches,
David Lawrence Ramsey6e6c80b2007-10-11 15:38:32 +0000314 size_t buf_len);
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000315char **cwd_tab_completion(const char *buf, bool allow_files, size_t
David Lawrence Ramsey6e6c80b2007-10-11 15:38:32 +0000316 *num_matches, size_t buf_len);
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000317char *input_tab(char *buf, bool allow_files, size_t *place, bool
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000318 *lastwastab, void (*refresh_func)(void), bool *list);
Chris Allegretta7662c862003-01-13 01:35:15 +0000319#endif
David Lawrence Ramsey04e42a62004-02-28 16:24:31 +0000320const char *tail(const char *foo);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000321#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000322char *histfilename(void);
David Lawrence Ramsey6420d442004-08-11 05:13:08 +0000323void load_history(void);
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000324bool writehist(FILE *hist, filestruct *histhead);
David Lawrence Ramsey6420d442004-08-11 05:13:08 +0000325void save_history(void);
Chris Allegretta9bfda912011-02-16 06:52:30 +0000326int check_dotnano(void);
327void load_poshistory(void);
328void save_poshistory(void);
329int check_poshistory(const char *file, ssize_t *line, ssize_t *column);
David Lawrence Ramsey6420d442004-08-11 05:13:08 +0000330#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000331
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000332/* All functions in global.c. */
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000333size_t length_of_list(int menu);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000334#ifndef NANO_TINY
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000335void toggle_init_one(int val
336#ifndef DISABLE_HELP
337 , const char *desc, bool blank_after
338#endif
339 , long flag);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000340void toggle_init(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000341#endif
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000342void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000343#ifndef DISABLE_HELP
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000344 , const char *help, bool blank_after
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000345#endif
David Lawrence Ramseybd28ee42006-07-25 21:13:30 +0000346 , int metaval, int funcval, int miscval, bool view, void
347 (*func)(void));
David Lawrence Ramsey1f1ebb82004-11-11 21:50:01 +0000348void shortcut_init(bool unjustify);
David Lawrence Ramsey576bf332004-07-12 03:10:30 +0000349void free_shortcutage(shortcut **shortcutage);
Chris Allegretta6232d662002-05-12 19:52:15 +0000350#ifdef DEBUG
Chris Allegrettadab017e2002-04-23 10:56:06 +0000351void thanks_for_all_the_fish(void);
Chris Allegretta6232d662002-05-12 19:52:15 +0000352#endif
Chris Allegrettadab017e2002-04-23 10:56:06 +0000353
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000354/* All functions in help.c. */
David Lawrence Ramseye38b8082006-03-30 07:03:04 +0000355#ifndef DISABLE_BROWSER
356void do_browser_help(void);
357#endif
Chris Allegretta1d778232008-08-30 21:00:00 +0000358void do_help_void(void);
359#ifndef DISABLE_HELP
360void do_help(void (*refresh_func)(void));
David Lawrence Ramseyd420b5a2005-11-01 23:00:56 +0000361void help_init(void);
David Lawrence Ramseybc80cb12006-04-24 23:03:21 +0000362void parse_help_input(int *kbinput, bool *meta_key, bool *func_key);
David Lawrence Ramseyc3593012005-11-01 20:11:55 +0000363size_t help_line_len(const char *ptr);
David Lawrence Ramsey7e2d6732005-11-01 19:32:45 +0000364#endif
365
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000366/* All functions in move.c. */
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000367void do_first_line(void);
368void do_last_line(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000369void do_page_up(void);
370void do_page_down(void);
David Lawrence Ramseyca62f9f2005-07-20 19:24:11 +0000371#ifndef DISABLE_JUSTIFY
372void do_para_begin(bool allow_update);
373void do_para_begin_void(void);
374void do_para_end(bool allow_update);
375void do_para_end_void(void);
376#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000377#ifndef NANO_TINY
David Lawrence Ramseyc4037f32005-07-20 21:31:19 +0000378bool do_next_word(bool allow_punct, bool allow_update);
379void do_next_word_void(void);
380bool do_prev_word(bool allow_punct, bool allow_update);
381void do_prev_word_void(void);
382#endif
David Lawrence Ramseyca62f9f2005-07-20 19:24:11 +0000383void do_home(void);
384void do_end(void);
David Lawrence Ramsey2c36e2e2006-07-06 22:17:47 +0000385void do_up(
386#ifndef NANO_TINY
387 bool scroll_only
388#else
389 void
390#endif
391 );
392void do_up_void(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000393#ifndef NANO_TINY
David Lawrence Ramsey2de84c12005-10-24 02:12:09 +0000394void do_scroll_up(void);
395#endif
David Lawrence Ramsey2c36e2e2006-07-06 22:17:47 +0000396void do_down(
397#ifndef NANO_TINY
398 bool scroll_only
399#else
400 void
401#endif
402 );
403void do_down_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_down(void);
406#endif
David Lawrence Ramsey1c3bfa92005-09-13 04:53:44 +0000407void do_left(void);
408void do_right(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000409
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000410/* All functions in nano.c. */
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000411filestruct *make_new_node(filestruct *prevnode);
412filestruct *copy_node(const filestruct *src);
413void splice_node(filestruct *begin, filestruct *newnode, filestruct
414 *end);
415void unlink_node(const filestruct *fileptr);
416void delete_node(filestruct *fileptr);
417filestruct *copy_filestruct(const filestruct *src);
418void free_filestruct(filestruct *src);
David Lawrence Ramsey90573292005-07-08 02:47:05 +0000419void renumber(filestruct *fileptr);
420partition *partition_filestruct(filestruct *top, size_t top_x,
421 filestruct *bot, size_t bot_x);
422void unpartition_filestruct(partition **p);
423void move_to_filestruct(filestruct **file_top, filestruct **file_bot,
424 filestruct *top, size_t top_x, filestruct *bot, size_t bot_x);
425void copy_from_filestruct(filestruct *file_top, filestruct *file_bot);
David Lawrence Ramseye99494f2005-07-20 21:08:38 +0000426openfilestruct *make_new_opennode(void);
427void splice_opennode(openfilestruct *begin, openfilestruct *newnode,
428 openfilestruct *end);
429void unlink_opennode(openfilestruct *fileptr);
430void delete_opennode(openfilestruct *fileptr);
431#ifdef DEBUG
432void free_openfilestruct(openfilestruct *src);
433#endif
David Lawrence Ramsey50406662005-01-19 19:52:42 +0000434void print_view_warning(void);
David Lawrence Ramseyda141062004-05-25 19:41:11 +0000435void finish(void);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000436void die(const char *msg, ...);
Chris Allegretta8b6f6fc2009-11-22 21:35:56 +0000437void die_save_file(const char *die_filename
438#ifndef NANO_TINY
439 , struct stat *die_stat
440#endif
441 );
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000442void window_init(void);
David Lawrence Ramseyf5b256b2003-10-03 20:26:25 +0000443#ifndef DISABLE_MOUSE
David Lawrence Ramsey503bad02006-06-09 18:24:37 +0000444void disable_mouse_support(void);
445void enable_mouse_support(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000446void mouse_init(void);
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000447#endif
David Lawrence Ramsey660e05b2006-05-12 19:30:28 +0000448void print_opt_full(const char *shortflag
David Lawrence Ramsey39e8ce62005-03-21 07:24:47 +0000449#ifdef HAVE_GETOPT_LONG
450 , const char *longflag
451#endif
452 , const char *desc);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000453void usage(void);
454void version(void);
David Lawrence Ramsey637b8bb2005-01-17 05:06:55 +0000455int no_more_space(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000456int no_help(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000457void nano_disabled_msg(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000458void do_exit(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000459void signal_init(void);
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000460RETSIGTYPE handle_hupterm(int signal);
461RETSIGTYPE do_suspend(int signal);
462RETSIGTYPE do_continue(int signal);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000463#ifndef NANO_TINY
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000464RETSIGTYPE handle_sigwinch(int signal);
David Lawrence Ramseyce62e822004-08-05 22:10:22 +0000465void allow_pending_sigwinch(bool allow);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000466#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000467#ifndef NANO_TINY
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000468void do_toggle(int flag);
Chris Allegretta637daa82011-02-07 14:45:56 +0000469void do_toggle_void(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000470#endif
David Lawrence Ramsey8bcac8a2005-06-09 04:02:57 +0000471void disable_extended_io(void);
David Lawrence Ramseyf78bc852007-12-18 15:55:48 +0000472#ifdef USE_SLANG
473void disable_signals(void);
474#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000475#ifndef NANO_TINY
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000476void enable_signals(void);
477#endif
478void disable_flow_control(void);
479void enable_flow_control(void);
David Lawrence Ramsey8aaf0302004-07-27 16:46:35 +0000480void terminal_init(void);
Chris Allegrettaeb643142008-03-12 04:44:14 +0000481int do_input(bool *meta_key, bool *func_key, bool *have_shortcut, bool
David Lawrence Ramseycac02932005-01-11 23:05:05 +0000482 *ran_func, bool *finished, bool allow_funcs);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000483#ifndef DISABLE_MOUSE
David Lawrence Ramsey3a5eaeb2007-05-20 23:41:56 +0000484int do_mouse(void);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000485#endif
David Lawrence Ramseyefec6412005-03-17 03:52:08 +0000486void do_output(char *output, size_t output_len, bool allow_cntrls);
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000487
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000488/* All functions in prompt.c. */
Chris Allegrettaeb643142008-03-12 04:44:14 +0000489int do_statusbar_input(bool *meta_key, bool *func_key, bool *have_shortcut,
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000490 bool *ran_func, bool *finished, bool allow_funcs, void
491 (*refresh_func)(void));
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000492#ifndef DISABLE_MOUSE
David Lawrence Ramsey3a5eaeb2007-05-20 23:41:56 +0000493int do_statusbar_mouse(void);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000494#endif
495void do_statusbar_output(char *output, size_t output_len, bool
David Lawrence Ramsey81371022006-11-27 04:56:16 +0000496 *got_enter, bool allow_cntrls);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000497void do_statusbar_home(void);
498void do_statusbar_end(void);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000499void do_statusbar_left(void);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000500void do_statusbar_right(void);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000501void do_statusbar_backspace(void);
502void do_statusbar_delete(void);
503void do_statusbar_cut_text(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000504#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000505bool do_statusbar_next_word(bool allow_punct);
506bool do_statusbar_prev_word(bool allow_punct);
507#endif
508void do_statusbar_verbatim_input(bool *got_enter);
David Lawrence Ramseyc4993822005-11-16 04:14:03 +0000509#ifndef NANO_TINY
David Lawrence Ramsey5ab56ea2005-11-16 13:45:41 +0000510bool find_statusbar_bracket_match(bool reverse, const char
511 *bracket_set);
David Lawrence Ramseyc4993822005-11-16 04:14:03 +0000512void do_statusbar_find_bracket(void);
513#endif
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000514size_t statusbar_xplustabs(void);
515size_t get_statusbar_page_start(size_t start_col, size_t column);
David Lawrence Ramseye19449e2005-11-07 21:45:44 +0000516void reset_statusbar_cursor(void);
David Lawrence Ramsey60edb0a2006-05-15 15:17:50 +0000517void update_statusbar_line(const char *curranswer, size_t index);
David Lawrence Ramseyfa387952006-08-26 16:50:51 +0000518bool need_statusbar_horizontal_update(size_t pww_save);
David Lawrence Ramsey60edb0a2006-05-15 15:17:50 +0000519void total_statusbar_refresh(void (*refresh_func)(void));
Chris Allegrettaeb643142008-03-12 04:44:14 +0000520const sc *get_prompt_string(int *value, bool allow_tabs,
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000521#ifndef DISABLE_TABCOMP
522 bool allow_files,
523#endif
524 const char *curranswer,
Chris Allegretta10f868d2008-03-14 04:08:51 +0000525 bool *meta_key, bool *func_key,
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000526#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000527 filestruct **history_list,
528#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000529 void (*refresh_func)(void), int menu
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000530#ifndef DISABLE_TABCOMP
531 , bool *list
532#endif
533 );
David Lawrence Ramsey9d8c2842006-02-07 21:11:05 +0000534int do_prompt(bool allow_tabs,
535#ifndef DISABLE_TABCOMP
536 bool allow_files,
537#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000538 int menu, const char *curranswer,
Chris Allegretta10f868d2008-03-14 04:08:51 +0000539 bool *meta_key, bool *func_key,
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000540#ifndef NANO_TINY
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000541 filestruct **history_list,
542#endif
David Lawrence Ramsey68160072006-02-18 21:32:29 +0000543 void (*refresh_func)(void), const char *msg, ...);
David Lawrence Ramseye19449e2005-11-07 21:45:44 +0000544void do_prompt_abort(void);
545int do_yesno_prompt(bool all, const char *msg);
David Lawrence Ramseyd24d0a42005-11-01 17:37:44 +0000546
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000547/* All functions in rcfile.c. */
Chris Allegretta7a500092001-04-19 21:13:46 +0000548#ifdef ENABLE_NANORC
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000549void rcfile_error(const char *msg, ...);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000550char *parse_next_word(char *ptr);
551char *parse_argument(char *ptr);
552#ifdef ENABLE_COLOR
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000553char *parse_next_regex(char *ptr);
Chris Allegrettad84849e2012-02-06 01:10:45 +0000554bool nregcomp(const char *regex, int cflags);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000555void parse_syntax(char *ptr);
Chris Allegrettab00d0b92011-02-13 04:23:10 +0000556void parse_magic_syntax(char *ptr);
David Lawrence Ramseycee20e52006-04-13 02:43:54 +0000557void parse_include(char *ptr);
David Lawrence Ramseya8239c32006-05-28 22:24:03 +0000558short color_to_short(const char *colorname, bool *bright);
David Lawrence Ramsey23555f22005-06-27 03:07:10 +0000559void parse_colors(char *ptr, bool icase);
Chris Allegretta9555e1d2009-02-16 21:04:00 +0000560void reset_multis(filestruct *fileptr, bool force);
Chris Allegretta56a295b2009-02-07 14:48:30 +0000561void alloc_multidata_if_needed(filestruct *fileptr);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000562#endif
David Lawrence Ramseycee20e52006-04-13 02:43:54 +0000563void parse_rcfile(FILE *rcstream
564#ifdef ENABLE_COLOR
565 , bool syntax_only
566#endif
567 );
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000568void do_rcfile(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000569#endif
Chris Allegretta8d8e0122001-04-18 04:28:54 +0000570
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000571/* All functions in search.c. */
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000572#ifdef HAVE_REGEX_H
David Lawrence Ramsey0ec34ac2007-01-09 23:35:02 +0000573bool regexp_init(const char *regexp);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000574void regexp_cleanup(void);
575#endif
576void not_found_msg(const char *str);
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000577void search_replace_abort(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000578void search_init_globals(void);
David Lawrence Ramseyd532f192004-10-04 22:37:56 +0000579int search_init(bool replacing, bool use_answer);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000580bool findnextstr(
581#ifndef DISABLE_SPELLER
582 bool whole_word,
583#endif
584 bool no_sameline, const filestruct *begin, size_t begin_x, const
585 char *needle, size_t *needle_len);
David Lawrence Ramseye5e88fd2004-10-31 13:20:30 +0000586void findnextstr_wrap_reset(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000587void do_search(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000588#ifndef NANO_TINY
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000589void do_research(void);
David Lawrence Ramsey5aa39832004-05-05 21:36:50 +0000590#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000591#ifdef HAVE_REGEX_H
David Lawrence Ramseye3970f52005-05-26 03:47:24 +0000592int replace_regexp(char *string, bool create);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000593#endif
David Lawrence Ramsey1044d742004-02-24 20:41:39 +0000594char *replace_line(const char *needle);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000595ssize_t do_replace_loop(
596#ifndef DISABLE_SPELLER
597 bool whole_word,
598#endif
599 bool *canceled, const filestruct *real_current, size_t
600 *real_current_x, const char *needle);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000601void do_replace(void);
David Lawrence Ramsey5beae582005-06-29 00:17:18 +0000602void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
David Lawrence Ramsey8f1afee2005-07-16 07:06:36 +0000603 bool interactive, bool save_pos, bool allow_update);
David Lawrence Ramsey9245f972005-05-17 18:06:26 +0000604void do_gotolinecolumn_void(void);
David Lawrence Ramsey8f4762a2005-07-16 22:35:11 +0000605#ifndef DISABLE_SPELLER
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000606void do_gotopos(ssize_t pos_line, size_t pos_x, ssize_t pos_y, size_t
David Lawrence Ramsey2cf6d712005-06-28 06:25:34 +0000607 pos_pww);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000608#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000609#ifndef NANO_TINY
David Lawrence Ramseyc5c52302005-11-15 23:45:29 +0000610bool find_bracket_match(bool reverse, const char *bracket_set);
David Lawrence Ramseyc4ca5962005-06-16 20:58:19 +0000611void do_find_bracket(void);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000612#ifdef ENABLE_NANORC
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000613bool history_has_changed(void);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000614#endif
Chris Allegretta5beed502003-01-05 20:41:21 +0000615void history_init(void);
David Lawrence Ramsey0e581b32005-07-18 07:48:50 +0000616void history_reset(const filestruct *h);
David Lawrence Ramsey96e6d562005-07-19 04:53:45 +0000617filestruct *find_history(const filestruct *h_start, const filestruct
618 *h_end, const char *s, size_t len);
David Lawrence Ramsey34bdc352005-06-02 18:41:31 +0000619void update_history(filestruct **h, const char *s);
David Lawrence Ramsey934f9682005-05-23 16:30:06 +0000620char *get_history_older(filestruct **h);
621char *get_history_newer(filestruct **h);
Chris Allegretta637daa82011-02-07 14:45:56 +0000622void get_history_older_void(void);
623void get_history_newer_void(void);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000624#ifndef DISABLE_TABCOMP
David Lawrence Ramsey96e6d562005-07-19 04:53:45 +0000625char *get_history_completion(filestruct **h, const char *s, size_t len);
David Lawrence Ramsey1addd602005-06-03 19:28:30 +0000626#endif
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000627#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000628
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000629/* All functions in text.c. */
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000630#ifndef NANO_TINY
David Lawrence Ramsey7ea09e52005-07-25 02:41:59 +0000631void do_mark(void);
632#endif
633void do_delete(void);
634void do_backspace(void);
635void do_tab(void);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000636#ifndef NANO_TINY
David Lawrence Ramseyaee00d42006-07-05 18:42:22 +0000637void do_indent(ssize_t cols);
638void do_indent_void(void);
639void do_unindent(void);
Chris Allegretta07fcc4c2008-07-10 20:13:04 +0000640void do_undo(void);
641void do_redo(void);
David Lawrence Ramseyf85001a2006-04-28 13:19:56 +0000642#endif
Chris Allegrettae061a0d2009-04-25 03:31:30 +0000643void do_enter(bool undoing);
Chris Allegretta637daa82011-02-07 14:45:56 +0000644void do_enter_void(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000645#ifndef NANO_TINY
David Lawrence Ramsey8befda62005-12-06 19:39:56 +0000646RETSIGTYPE cancel_command(int signal);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000647bool execute_command(const char *command);
648#endif
649#ifndef DISABLE_WRAPPING
650void wrap_reset(void);
Chris Allegrettaa4c2b992009-04-29 22:34:27 +0000651bool do_wrap(filestruct *line, bool undoing);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000652#endif
David Lawrence Ramseyc7c04bb2005-11-29 21:30:00 +0000653#if !defined(DISABLE_HELP) || !defined(DISABLE_WRAPJUSTIFY)
David Lawrence Ramseyb9b2fd52005-11-22 21:13:36 +0000654ssize_t break_line(const char *line, ssize_t goal
655#ifndef DISABLE_HELP
Chris Allegretta8b6461f2008-05-31 23:09:40 +0000656 , bool newln
David Lawrence Ramseyb9b2fd52005-11-22 21:13:36 +0000657#endif
658 );
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000659#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000660#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000661size_t indent_length(const char *line);
662#endif
663#ifndef DISABLE_JUSTIFY
664void justify_format(filestruct *paragraph, size_t skip);
665size_t quote_length(const char *line);
666bool quotes_match(const char *a_line, size_t a_quote, const char
667 *b_line);
668bool indents_match(const char *a_line, size_t a_indent, const char
669 *b_line, size_t b_indent);
670bool begpar(const filestruct *const foo);
671bool inpar(const filestruct *const foo);
David Lawrence Ramseycd8f7352005-11-10 21:20:32 +0000672void backup_lines(filestruct *first_line, size_t par_len);
David Lawrence Ramsey79383be2005-11-29 18:34:45 +0000673bool find_paragraph(size_t *const quote, size_t *const par);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000674void do_justify(bool full_justify);
675void do_justify_void(void);
676void do_full_justify(void);
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000677#endif
David Lawrence Ramseycc8185f2005-07-25 02:33:45 +0000678#ifndef DISABLE_SPELLER
679bool do_int_spell_fix(const char *word);
680const char *do_int_speller(const char *tempfile_name);
681const char *do_alt_speller(char *tempfile_name);
682void do_spell(void);
683#endif
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000684#ifndef NANO_TINY
David Lawrence Ramsey8e942342005-07-25 04:21:46 +0000685void do_wordlinechar_count(void);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000686#endif
David Lawrence Ramsey37ddfa92005-11-07 06:06:05 +0000687void do_verbatim_input(void);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000688
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000689/* All functions in utils.c. */
David Lawrence Ramseyc596c0c2005-04-19 16:32:08 +0000690int digits(size_t n);
David Lawrence Ramsey65e6ecb2005-02-08 20:37:53 +0000691void get_homedir(void);
David Lawrence Ramseyc53ab2a2004-08-04 18:24:53 +0000692bool parse_num(const char *str, ssize_t *val);
David Lawrence Ramsey2cf6d712005-06-28 06:25:34 +0000693bool parse_line_column(const char *str, ssize_t *line, ssize_t *column);
David Lawrence Ramsey6a0d5b82005-06-13 14:00:22 +0000694void align(char **str);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000695void null_at(char **data, size_t index);
696void unsunder(char *str, size_t true_len);
697void sunder(char *str);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000698#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
David Lawrence Ramseya27bd652004-08-17 05:23:38 +0000699#ifndef HAVE_GETLINE
700ssize_t ngetline(char **lineptr, size_t *n, FILE *stream);
701#endif
702#ifndef HAVE_GETDELIM
703ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream);
704#endif
David Lawrence Ramseybbac1bb2005-11-14 21:32:42 +0000705#endif
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000706#ifdef HAVE_REGEX_H
David Lawrence Ramsey6d6a36c2005-12-08 07:09:08 +0000707bool regexp_bol_or_eol(const regex_t *preg, const char *string);
Chris Allegretta6b83e522008-08-30 05:16:20 +0000708const char *fixbounds(const char *r);
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000709#endif
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000710#ifndef DISABLE_SPELLER
David Lawrence Ramsey691698a2005-07-24 19:57:51 +0000711bool is_whole_word(size_t pos, const char *buf, const char *word);
David Lawrence Ramseycf9c34a2005-11-16 05:59:06 +0000712#endif
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000713const char *strstrwrapper(const char *haystack, const char *needle,
David Lawrence Ramsey1044d742004-02-24 20:41:39 +0000714 const char *start);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000715void nperror(const char *s);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000716void *nmalloc(size_t howmuch);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000717void *nrealloc(void *ptr, size_t howmuch);
David Lawrence Ramsey4a1fc552004-11-02 15:18:30 +0000718char *mallocstrncpy(char *dest, const char *src, size_t n);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000719char *mallocstrcpy(char *dest, const char *src);
David Lawrence Ramsey02517e02004-09-05 21:40:31 +0000720char *mallocstrassn(char *dest, char *src);
David Lawrence Ramsey2b9d6a02005-11-01 17:45:31 +0000721size_t get_page_start(size_t column);
David Lawrence Ramsey81c4e182005-10-31 23:07:58 +0000722size_t xplustabs(void);
723size_t actual_x(const char *s, size_t column);
724size_t strnlenpt(const char *s, size_t maxlen);
725size_t strlenpt(const char *s);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000726void new_magicline(void);
David Lawrence Ramseyebe34252005-11-15 03:17:35 +0000727#ifndef NANO_TINY
David Lawrence Ramsey40bdb682004-11-03 22:03:41 +0000728void remove_magicline(void);
David Lawrence Ramseyf7080372004-07-08 17:15:10 +0000729void mark_order(const filestruct **top, size_t *top_x, const filestruct
David Lawrence Ramsey90e59c12004-11-05 23:03:03 +0000730 **bot, size_t *bot_x, bool *right_side_up);
Chris Allegretta14c86202008-08-03 04:48:05 +0000731void add_undo(undo_type current_action);
732void update_undo(undo_type action);
David Lawrence Ramsey5ffbec52003-09-16 01:16:49 +0000733#endif
David Lawrence Ramseyc104ef12005-07-17 01:44:35 +0000734size_t get_totsize(const filestruct *begin, const filestruct *end);
Chris Allegretta14c86202008-08-03 04:48:05 +0000735filestruct *fsfromline(ssize_t lineno);
David Lawrence Ramsey00cc5652005-11-02 15:44:01 +0000736#ifdef DEBUG
737void dump_filestruct(const filestruct *inptr);
738void dump_filestruct_reverse(void);
739#endif
Chris Allegretta6df90f52002-07-19 01:08:59 +0000740
David Lawrence Ramsey6335fb52007-01-01 05:15:32 +0000741/* All functions in winio.c. */
David Lawrence Ramseydb958022005-07-13 20:18:46 +0000742void get_key_buffer(WINDOW *win);
743size_t get_key_buffer_len(void);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000744void unget_input(int *input, size_t input_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000745void unget_kbinput(int kbinput, bool meta_key, bool func_key);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000746int *get_input(WINDOW *win, size_t input_len);
David Lawrence Ramseyeb16f432004-09-27 01:04:50 +0000747int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000748int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
David Lawrence Ramsey1b4ae692006-07-25 19:23:35 +0000749int get_escape_seq_kbinput(const int *seq, size_t seq_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000750int get_escape_seq_abcd(int kbinput);
David Lawrence Ramsey5370b0c2006-07-23 17:54:35 +0000751int parse_escape_seq_kbinput(WINDOW *win, int kbinput);
David Lawrence Ramseyfc0f8f82006-05-10 13:41:53 +0000752int get_byte_kbinput(int kbinput);
David Lawrence Ramsey6fb66892006-05-27 17:39:19 +0000753#ifdef ENABLE_UTF8
David Lawrence Ramsey12e37082006-05-27 15:52:26 +0000754long add_unicode_digit(int kbinput, long factor, long *uni);
David Lawrence Ramsey7f1b1192006-05-28 17:30:28 +0000755long get_unicode_kbinput(int kbinput);
David Lawrence Ramsey6fb66892006-05-27 17:39:19 +0000756#endif
David Lawrence Ramsey48ae9862004-05-28 17:23:33 +0000757int get_control_kbinput(int kbinput);
David Lawrence Ramseyb54155c2005-01-12 03:25:57 +0000758void unparse_kbinput(char *output, size_t output_len);
David Lawrence Ramsey74835712004-12-04 17:41:52 +0000759int *get_verbatim_kbinput(WINDOW *win, size_t *kbinput_len);
760int *parse_verbatim_kbinput(WINDOW *win, size_t *kbinput_len);
David Lawrence Ramsey14bf8032004-05-22 20:19:15 +0000761#ifndef DISABLE_MOUSE
David Lawrence Ramsey3a5eaeb2007-05-20 23:41:56 +0000762int get_mouseinput(int *mouse_x, int *mouse_y, bool allow_shortcuts);
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +0000763#endif
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000764const sc *get_shortcut(int menu, int *kbinput, bool
David Lawrence Ramseyeb16f432004-09-27 01:04:50 +0000765 *meta_key, bool *func_key);
Chris Allegretta637daa82011-02-07 14:45:56 +0000766const sc *first_sc_for(int menu, void (*func)(void));
David Lawrence Ramseyb386a902005-07-10 02:37:38 +0000767void blank_line(WINDOW *win, int y, int x, int n);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000768void blank_titlebar(void);
David Lawrence Ramsey637b8bb2005-01-17 05:06:55 +0000769void blank_topbar(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000770void blank_edit(void);
771void blank_statusbar(void);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000772void blank_bottombars(void);
David Lawrence Ramseyb9ddb802005-03-17 17:56:48 +0000773void check_statusblank(void);
David Lawrence Ramseyfc693212004-12-23 17:43:27 +0000774char *display_string(const char *buf, size_t start_col, size_t len, bool
775 dollars);
Chris Allegrettaf717f982003-02-13 22:25:01 +0000776void titlebar(const char *path);
David Lawrence Ramseyd7fd2002004-05-18 01:20:36 +0000777void set_modified(void);
778void statusbar(const char *msg, ...);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000779void bottombars(int menu);
David Lawrence Ramseyfa394042004-05-23 21:11:14 +0000780void onekey(const char *keystroke, const char *desc, size_t len);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000781void reset_cursor(void);
Chris Allegrettad47d8cd2009-01-25 07:25:17 +0000782void edit_draw(filestruct *fileptr, const char *converted, int
David Lawrence Ramseya0aff672005-10-27 20:10:45 +0000783 line, size_t start);
Chris Allegretta05417a22009-08-17 07:52:10 +0000784int update_line(filestruct *fileptr, size_t index);
David Lawrence Ramseyfa387952006-08-26 16:50:51 +0000785bool need_horizontal_update(size_t pww_save);
786bool need_vertical_update(size_t pww_save);
David Lawrence Ramsey107e8162005-08-01 21:05:29 +0000787void edit_scroll(scroll_dir direction, ssize_t nlines);
Chris Allegrettad47d8cd2009-01-25 07:25:17 +0000788void edit_redraw(filestruct *old_current, size_t pww_save);
Chris Allegretta6df90f52002-07-19 01:08:59 +0000789void edit_refresh(void);
David Lawrence Ramseybf0e47d2005-08-01 18:27:10 +0000790void edit_update(update_type location);
David Lawrence Ramseyc54c4d12005-06-18 15:49:17 +0000791void total_redraw(void);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000792void total_refresh(void);
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000793void display_main_list(void);
David Lawrence Ramseya0b5ba22004-08-25 15:39:10 +0000794void do_cursorpos(bool constant);
David Lawrence Ramsey72e51ab2004-07-02 14:31:03 +0000795void do_cursorpos_void(void);
David Lawrence Ramsey7bde0532005-06-30 03:55:55 +0000796void do_replace_highlight(bool highlight, const char *word);
Chris Allegretta5a018f02009-11-29 06:13:22 +0000797const char *flagtostr(int flag);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000798const subnfunc *sctofunc(sc *s);
Chris Allegretta0dc26dc2009-01-24 22:40:41 +0000799const subnfunc *getfuncfromkey(WINDOW *win);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000800void print_sclist(void);
801sc *strtosc(int menu, char *input);
Chris Allegretta5a018f02009-11-29 06:13:22 +0000802function_type strtokeytype(const char *str);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000803int strtomenu(char *input);
804void assign_keyinfo(sc *s);
805void xon_complaint(void);
806void xoff_complaint(void);
Chris Allegretta637daa82011-02-07 14:45:56 +0000807int sc_seq_or (void (*func)(void), int defaultval);
Chris Allegretta0018d8e2008-03-13 08:23:52 +0000808void do_suspend_void(void);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000809
Chris Allegretta5a018f02009-11-29 06:13:22 +0000810extern const char *cancel_msg;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000811#ifndef NANO_TINY
Chris Allegretta5a018f02009-11-29 06:13:22 +0000812extern const char *case_sens_msg;
813extern const char *backwards_msg;
814extern const char *prev_history_msg;
815extern const char *next_history_msg;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000816#endif
Chris Allegretta5a018f02009-11-29 06:13:22 +0000817extern const char *replace_msg;
818extern const char *no_replace_msg;
819extern const char *go_to_line_msg;
820extern const char *whereis_next_msg;
821extern const char *first_file_msg;
822extern const char *last_file_msg;
823extern const char *goto_dir_msg;
824extern const char *ext_cmd_msg;
825extern const char *to_files_msg;
826extern const char *dos_format_msg;
827extern const char *mac_format_msg;
828extern const char *append_msg;
829extern const char *prepend_msg;
830extern const char *backup_file_msg;
831extern const char *gototext_msg;
832extern const char *new_buffer_msg;
833
Chris Allegretta0dc26dc2009-01-24 22:40:41 +0000834void enable_nodelay(void);
835void disable_nodelay(void);
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000836
837#ifdef HAVE_REGEX_H
Chris Allegretta5a018f02009-11-29 06:13:22 +0000838extern const char *regexp_msg;
Chris Allegretta79a33bb2008-03-05 07:34:01 +0000839#endif
840
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000841#ifdef NANO_EXTRA
Chris Allegretta34318ed2001-01-31 23:22:36 +0000842void do_credits(void);
Chris Allegretta8a0de3b2000-11-24 20:45:14 +0000843#endif
David Lawrence Ramseye527e452005-04-15 18:07:26 +0000844
Chris Allegretta637daa82011-02-07 14:45:56 +0000845/* May as just throw these here since they are just placeholders */
846void do_cancel(void);
847void case_sens_void(void);
848void regexp_void(void);
849void gototext_void(void);
850void to_files_void(void);
851void dos_format_void(void);
852void mac_format_void(void);
853void append_void(void);
854void prepend_void(void);
855void backup_file_void(void);
856void new_buffer_void(void);
857void backwards_void(void);
858void goto_dir_void(void);
859void no_replace_void(void);
860void ext_cmd_void(void);
861
862
David Lawrence Ramseye527e452005-04-15 18:07:26 +0000863#endif /* !PROTO_H */