00001 /* 00002 Copyright (C) 2007-12 Andrea Vedaldi and Brian Fulkerson. 00003 All rights reserved. 00004 00005 This file is part of the VLFeat library and is made available under 00006 the terms of the BSD license (see the COPYING file). 00007 */ 00008 00009 #include <vl/generic.h> 00010 00011 int 00012 main(int argc VL_UNUSED, char ** argv VL_UNUSED) 00013 { 00014 char * string = vl_configuration_to_string_copy() ; 00015 assert (string) ; 00016 VL_PRINTF(string) ; 00017 vl_free(string) ; 00018 return 0 ; 00019 }