about summary refs log tree commit diff stats
path: root/widgets/providesmessage.go
Commit message (Expand)AuthorAgeFilesLines
* Fix crashes when operating on empty folder (#216)Daniel Bridges2019-07-101-1/+1
* Factor IMAP-specific structs out of UI modelsBen Burwell2019-07-081-4/+2
* Factor UI models out of the worker message packageBen Burwell2019-07-081-2/+2
* Make :pipe command more genericDrew DeVault2019-07-051-1/+11
* Add date to message viewerDrew DeVault2019-06-021-2/+2
* widget: Add ProvidesMessage interfaceKevin Kuehler2019-06-021-0/+14
f='#n15'>15 16 17 18 19 20 21 22
23
24
25
26
27
28
29





















                                                                       


                 
                    
                             

      
/* 
 * command.h
 *
 * Copyright (C) 2012 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

void cmd_init(void);
int process_input(char *inp);

#endif