Annotation of libelwix/example/test_lrbuf.c, revision 1.1.2.1

1.1.2.1 ! misho       1: #include <stdio.h>
        !             2: #include <elwix.h>
        !             3: 
        !             4: 
        !             5: int
        !             6: main(int argc, char **argv)
        !             7: {
        !             8:        lrbuf_t lrb = { 0 };
        !             9:        int res;
        !            10: 
        !            11:        res = lrb_init(&lrb, 32);
        !            12:        printf("lrb_init(32) -> #%d\n", res);
        !            13: 
        !            14:        lrb_free(&lrb);
        !            15:        printf("Done.\n");
        !            16:        return 0;
        !            17: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>