Path: blob/main/contrib/libxo/encoder/test/enc_test.c
48254 views
/*1* Copyright (c) 2015, Juniper Networks, Inc.2* All rights reserved.3* This SOFTWARE is licensed under the LICENSE provided in the4* ../Copyright file. By downloading, installing, copying, or otherwise5* using the SOFTWARE, you agree to be bound by the terms of that6* LICENSE.7* Phil Shafer, August 20158*/910#include "xo.h"11#include "xo_encoder.h"1213static int14test_handler (XO_ENCODER_HANDLER_ARGS)15{16printf("op %s: [%s] [%s] [%#llx]\n", xo_encoder_op_name(op),17name ?: "", value ?: "", (unsigned long long) flags);1819return 0;20}2122int23xo_encoder_library_init (XO_ENCODER_INIT_ARGS)24{25arg->xei_version = XO_ENCODER_VERSION;26arg->xei_handler = test_handler;2728return 0;29}303132