Bladeren bron

More stuff...

master
Ognjen Milan Robovic 8 maanden geleden
bovenliggende
commit
474d3fdb35
3 gewijzigde bestanden met toevoegingen van 82 en 0 verwijderingen
  1. +9
    -0
      compile.sh
  2. +7
    -0
      install.sh
  3. +66
    -0
      xighlight.c

+ 9
- 0
compile.sh Bestand weergeven

@@ -0,0 +1,9 @@
#!/bin/bash

set -xe

gcc -ansi -Wall -Wextra -Wpedantic -o xighlight xighlight.c
clang -ansi -Weverything -o xighlight xighlight.c
cat xighlight.c | valgrind --show-leak-kinds=all --leak-check=full ./xighlight

exit

+ 7
- 0
install.sh Bestand weergeven

@@ -0,0 +1,7 @@
#!/bin/bash

set -xe

sudo cp xighlight /usr/bin/xighlight

exit

+ 66
- 0
xighlight.c Bestand weergeven

@@ -0,0 +1,66 @@
#include <xolatile/xyntax.h>
#include <xolatile/xyntax.c>

int main (void) {
int offset = 0;
int word = 0;
char * buffer = NULL;

char separator [29] = ".,:;<=>+-*/%!&~^()[]{}'\" \t\r\n";

char * c_keywords [32] = {
"register", "volatile", "auto", "const", "static", "extern", "if", "else",
"do", "while", "for", "continue", "switch", "case", "default", "break",
"enum", "union", "struct", "typedef", "goto", "void", "return", "sizeof",
"char", "short", "int", "long", "signed", "unsigned", "float", "double"
};

char * c_preprocessor [8] = {
"#include", "#define", "#ifdef", "#ifndef", "#undef", "#elif", "#if", "#endif"
};

char * c_common [4] = {
"NULL", "FILE", "size_t", "ssize_t"
};

syntax_define (0, 0, 0, "#", "\n", '\\', TERMINAL_COLOUR_RED, TERMINAL_EFFECT_BOLD);
syntax_define (0, 0, 0, "/*", "*/", '\0', TERMINAL_COLOUR_GREY, TERMINAL_EFFECT_BOLD);
syntax_define (0, 0, 0, "//", "\n", '\0', TERMINAL_COLOUR_GREY, TERMINAL_EFFECT_BOLD);
syntax_define (0, 0, 0, "'", "'", '\\', TERMINAL_COLOUR_PINK, TERMINAL_EFFECT_BOLD);
syntax_define (0, 0, 0, "\"", "\"", '\\', TERMINAL_COLOUR_RED, TERMINAL_EFFECT_BOLD);
syntax_define (0, 1, 0, "()[]{}", "", '\0', TERMINAL_COLOUR_GREEN, TERMINAL_EFFECT_BOLD);
syntax_define (0, 1, 0, ".,:;<=>+-*/%!&~^", "", '\0', TERMINAL_COLOUR_BLUE, TERMINAL_EFFECT_BOLD);

do {
syntax_define (0, 0, 1, c_keywords [word], separator, '\0', TERMINAL_COLOUR_YELLOW, TERMINAL_EFFECT_BOLD);
} while (++word != 32);

word = 0;

do {
syntax_define (0, 0, 1, c_preprocessor [word], separator, '\0', TERMINAL_COLOUR_YELLOW, TERMINAL_EFFECT_NORMAL);
} while (++word != 8);

word = 0;

do {
syntax_define (0, 0, 1, c_common [word], separator, '\0', TERMINAL_COLOUR_YELLOW, TERMINAL_EFFECT_ITALIC);
} while (++word != 4);

syntax_define (0, 1, 1, "0123456789", separator, '\0', TERMINAL_COLOUR_CYAN, TERMINAL_EFFECT_BOLD);
syntax_define (0, 1, 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", separator, '\0', TERMINAL_COLOUR_PINK, TERMINAL_EFFECT_ITALIC);
syntax_define (0, 1, 1, "abcdefghijklmnopqrstuvwxyz", separator, '\0', TERMINAL_COLOUR_WHITE, TERMINAL_EFFECT_ITALIC);
syntax_define (0, 0, 1, "_", separator, '\0', TERMINAL_COLOUR_YELLOW, TERMINAL_EFFECT_ITALIC);

buffer = record ();

do {
offset += syntax_output (& buffer [offset]);
} while (buffer [offset] != '\0');

buffer = deallocate (buffer);

syntax_delete ();

return (EXIT_SUCCESS);
}

Laden…
Annuleren
Opslaan