/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1998-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
*
* AT&T Research
*/
#ifndef _UU_H
#define _UU_H
#include <ast.h>
struct Uumeth_s
{
const char* name;
const char* alias;
const char* id;
void* data;
};
struct Uudisc_s
{
unsigned long version;
unsigned long flags;
};
struct Uu_s
{
const char* id;
char* path;
#ifdef _UU_PRIVATE_
#endif
};
#if _BLD_uu && defined(__EXPORT__)
#define extern __EXPORT__
#endif
extern int uumain(char**, int);
#undef extern
#endif