#include "selection_info_init.h"
#include <string.h>

void
selection_info_init (SELECTION_INFO * s)
{
  s->set = NULL;
  s->active = false;
  s->purpose = SET;
  s->x = 0;
  s->y = 0;

  return;
}