/***********************************************************************1* *2* This software is part of the ast package *3* Copyright (c) 1998-2011 AT&T Intellectual Property *4* and is licensed under the *5* Eclipse Public License, Version 1.0 *6* by AT&T Intellectual Property *7* *8* A copy of the License is available at *9* http://www.eclipse.org/org/documents/epl-v10.html *10* (with md5 checksum b35adb5213ca9657e911e9befb180842) *11* *12* Information and Software Systems Research *13* AT&T Research *14* Florham Park NJ *15* *16* Glenn Fowler <[email protected]> *17* *18***********************************************************************/19#pragma prototyped20/*21* uuencode/uudecode private interface22*23* AT&T Research24*/2526#ifndef _UULIB_H27#define _UULIB_H2829#define _UU_PRIVATE_ \30unsigned long flags; \31int mode; \32Sfio_t* lp; \33Sfio_t* ip; \34Sfio_t* op; \35size_t count;3637#include "uu.h"3839#define UU_CLOSEOUT (1<<4) /* close op when done */40#define UU_FREEPATH (1<<5) /* free path when done */41#define UU_HEADERMUST (1<<6) /* header must be called */42#define UU_LENGTH (1<<7) /* length encoded too */43#define UU_DEFAULT (1<<8) /* original method was default */44#define UU_METHOD (1<<9) /* first method specific bit */4546typedef struct47{48const char* end;49int pad;50int fill;51unsigned long flags;52int size;53const char map[65];54} Uudata_t;5556#endif575859