/**********************************************************************
 * do_parse.c  -- SS command for giving access to a helper
 * tty lucy client using SS library
 *
 * $Author: brlewis $
 * $Source$
 * $Header$
 *
 * Copyright 1991 by the Massachusetts Institute of Technology.
 *
 * For copying and distribution information, please see the file
 * <mit-copyright.h>.
 **********************************************************************/
#include <mit-copyright.h>

#ifndef lint
static char rcsid_do_parse_c[] = "$Header$";
#endif /* lint */

#include <stdio.h>
#include <strings.h>
#include <ss/ss.h>
#include "lucy/lucy.h"
#include "config.h"

void
do_parse(argc, argv)
     int argc;
     char *argv[];
{
  long code;

  if (code=luc_parse(atoi(argv[1])))
    com_err(argv[0], code, "(%s)", luv_context);
  return;
}
