1 /****************************************************************\
2 *                                                                *
3 *  Simple Alphabet Object                                        *
4 *                                                                *
5 *  Guy St.C. Slater..   mailto:guy@ebi.ac.uk                     *
6 *  Copyright (C) 2000-2009.  All Rights Reserved.                *
7 *                                                                *
8 *  This source code is distributed under the terms of the        *
9 *  GNU General Public License, version 3. See the file COPYING   *
10 *  or http://www.gnu.org/licenses/gpl.txt for details            *
11 *                                                                *
12 *  If you use this code, please keep this notice intact.         *
13 *                                                                *
14 \****************************************************************/
15 
16 #include "alphabet.h"
17 
Argument_main(Argument * arg)18 gint Argument_main(Argument *arg){
19     register Alphabet *dna_alphabet
20            = Alphabet_create(Alphabet_Type_DNA, FALSE);
21     Alphabet_destroy(dna_alphabet);
22     return 0;
23     }
24 
25