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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <keymap.h>
#include "libcommon.h"
int
main(int argc KBD_ATTR_UNUSED, char **argv KBD_ATTR_UNUSED)
{
int i = MAX_DIACR + 10;
struct lk_ctx *ctx;
struct lk_kbdiacr ptr;
ptr.diacr = 0;
ptr.base = 0;
ptr.result = 0;
ctx = lk_init();
lk_set_log_fn(ctx, NULL, NULL);
while (i > 0) {
if (lk_append_diacr(ctx, &ptr) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to add diacr");
i--;
}
lk_free(ctx);
return EXIT_SUCCESS;
}
|