about summary refs log tree commit diff stats
path: root/123slice.subx
Commit message (Expand)AuthorAgeFilesLines
* 6627Kartik Agaram2020-07-101-3/+3
* 6612 - reorganize layersKartik Agaram2020-07-051-0/+1220
vious revision' href='/danisanti/profani-tty/blame/command.h?id=7dfea94c88a876c51b86b46578c4cf409605a6c3'>^
d29c7fd8 ^
6bad38c2 ^
a7d89e0e ^
















a7df149e ^


fe519410 ^

b3f60232 ^
9fd7b2b3 ^


7972a9a8 ^
9fd7b2b3 ^

b3f60232 ^
3f8813bb ^
6a32ed45 ^



33bb82b4 ^

b3f60232 ^
b3f60232 ^

8ecbe0c5 ^
a7df149e ^
c72d7ad6 ^


80e62cfa ^
a7df149e ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  

            
                                                           
  
















                                                                       


                 

                 
                       


                            
                               

  
                    
                     



                                              

                                                                         
 

                                     
                                     
 


                                                 
 
      
/*
 * command.h
 *
 * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
 *
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef COMMAND_H
#define COMMAND_H

#include <glib.h>

// Command help strings
struct cmd_help_t {
    const gchar *usage;
    const gchar *short_help;
    const gchar *long_help[50];
};

void cmd_init(void);
void cmd_close(void);

void cmd_autocomplete(char *input, int *size);
void cmd_reset_autocomplete(void);

gboolean cmd_execute(const char * const command, const char * const inp);
gboolean cmd_execute_default(const char * const inp);

GSList * cmd_get_basic_help(void);
GSList * cmd_get_settings_help(void);
GSList * cmd_get_presence_help(void);

void cmd_history_append(char *inp);
char *cmd_history_previous(char *inp, int *size);
char *cmd_history_next(char *inp, int *size);

#endif