/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 2003-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 *
* *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#include "vchdr.h"
static char* Version = "\r\n@(#)$Id: vcodex (AT&T Shannon Laboratory - Kiem-Phong Vo) 2008-11-04 $\r\n";
/* Open a handle for data coding
**
** Written by Kiem-Phong Vo (kpv@research.att.com)
*/
#if __STD_C
#else
int flags; /* control flags */
#endif
{
}
}
}
return vc;
}
/* construct a handle from a list of methods and arguments */
typedef struct _meth_s
} Meth_t;
typedef struct Stack_s
{
char *spec;
} Stack_t;
#if __STD_C
#else
char* spec; /* method specification */
int type; /* VC_ENCODE, VC_DECODE */
#endif
{
ssize_t m;
{ /* get one method specification */
break;
sp--;
continue;
}
for(m = 0; meth[m]; ++m)
break;
if(m == 0)
break;
/* any arguments to the method are after separator */
meth[m] = 0;
/* find the actual method structure */
goto done;
goto done;
spec = s;
sp++;
continue;
}
/* allocate structure to hold data for now */
goto done;
}
goto done;
}
}
}
return vc;
}