~ubuntu-branches/ubuntu/dapper/asn1c/dapper

« back to all changes in this revision

Viewing changes to skeletons/NULL.h

  • Committer: Bazaar Package Importer
  • Author(s): W. Borgert
  • Date: 2005-05-28 12:36:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050528123642-3h6kstws5u0xcovl
Tags: upstream-0.9.14
ImportĀ upstreamĀ versionĀ 0.9.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
 
3
 * Redistribution and modifications are permitted subject to BSD license.
 
4
 */
 
5
#ifndef ASN_TYPE_NULL_H
 
6
#define ASN_TYPE_NULL_H
 
7
 
 
8
#include <asn_application.h>
 
9
 
 
10
/*
 
11
 * The value of the NULL type is meaningless: see BOOLEAN if you want to
 
12
 * carry true/false semantics.
 
13
 */
 
14
typedef int NULL_t;
 
15
 
 
16
extern asn_TYPE_descriptor_t asn_DEF_NULL;
 
17
 
 
18
asn_struct_print_f NULL_print;
 
19
der_type_encoder_f NULL_encode_der;
 
20
xer_type_decoder_f NULL_decode_xer;
 
21
xer_type_encoder_f NULL_encode_xer;
 
22
 
 
23
#endif  /* NULL_H */