0a1a15b85a2c520406a39815da30181a3a69eebd
[yaz-moved-to-github.git] / z39.50 / z-sutrs.c
1 /* YC 0.2 Tue Feb 29 16:45:06 CET 2000 */
2 /* Module-C: RecordSyntax-SUTRS */
3
4 #include <yaz/z-sutrs.h>
5
6 int z_SutrsRecord (ODR o, Z_SutrsRecord **p, int opt, const char *name)
7 {
8         return z_InternationalString (o, p, opt, name);
9 }
10
11 int z_SUTRS (ODR o, Odr_oct **p, int opt)
12 {
13     return odr_implicit(o, odr_octetstring, p, ODR_UNIVERSAL,
14         ODR_GENERALSTRING, opt);
15 }
16