about summary refs log tree commit diff stats
path: root/html/matt-chat/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf
Commit message (Expand)AuthorAgeFilesLines
* *elioat10 days1-0/+0
anti/profani-tty/blame/src/command.h?id=5fbf966b9ce62dd905159fcd9eaa4b2d3187eae6'>^
6bad38c2 ^
a7d89e0e ^
















a7df149e ^


fe519410 ^

2490f5b4 ^
9fd7b2b3 ^
b3f60232 ^
2490f5b4 ^
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
  

            
                                                           
  
















                                                                       


                 

                 
                     
 
                    
                      



                                              

                                                                         
 

                                     
                                     
 


                                                 
 
      
/*
 * 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>

GHashTable *commands;

void cmd_init(void);
void cmd_uninit(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