about summary refs log tree commit diff stats
path: root/test/ranger
diff options
context:
space:
mode:
authorToon Nolten <toonn@toonn.io>2018-07-07 22:00:33 +0200
committerGitHub <noreply@github.com>2018-07-07 22:00:33 +0200
commita523b1deaf1add8d105082720bf0ed9324eb69da (patch)
tree13a331d48fe89d8e045501cc35eb22b3d3e5890f /test/ranger
parent392f3a45530eb49dd35340999165c4c743050fab (diff)
parent901b69a38e5d0c90b138be5947870c1da5ba9e4f (diff)
downloadranger-a523b1deaf1add8d105082720bf0ed9324eb69da.tar.gz
Merge pull request #1227 from parmort/master
Revamped context section of the colorscheme doc
Diffstat (limited to 'test/ranger')
0 files changed, 0 insertions, 0 deletions
s' href='/danisanti/profani-tty/commit/main.c?id=5d9c7ffd9c27c1f097f71ccf940525121faefd12'>5d9c7ffd ^
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





















                                                                       


                   

                      
                               
    

















                                                  

                                


             
/* 
 * main.c
 *
 * 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/>.
 *
 */

#include <stdio.h>
#include <string.h>

#include "profanity.h"

int main(int argc, char **argv)
{   
    int disable_tls = 0;

    // more than one argument
    if (argc > 2) {
        printf("Usage: profanity [-notls]\n");
        return 1;

    // argument is not -notls
    } else if (argc == 2) {
        char *arg1 = argv[1];
        if (strcmp(arg1, "-notls") != 0) {
            printf("Usage: profanity [-notls]\n");
            return 1;
        } else {
            disable_tls = 1;
        }
    }

    profanity_init(disable_tls);
    profanity_run();

    return 0;
}