summaryrefslogtreecommitdiff
path: root/browsers/getaccent.c
blob: a7f81d457f34ff15ff99071b67fc7ed5ac4faf8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <unistd.h>
#include "../core/accent.h"

int main(void) {
    ColorShm *blk = NULL;
    char col[8];
    if (readaccent(&blk, col)) {
        printf("%s\n", col);
        return 0;
    }
    return 1;
}