#include <sane/sane.h>

int main( int argc, char** argv )
{
  SANE_Int version;
  const SANE_Device** devlist;

  sane_init(&version, 0);
  
  sane_get_devices(&devlist, 1);

  sane_exit();

  return 0;
}

