|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/sequin/sequinx.c |
source navigation diff markup identifier search freetext search file search |
1 /* sequinx.c
2 * ===========================================================================
3 *
4 * PUBLIC DOMAIN NOTICE
5 * National Center for Biotechnology Information (NCBI)
6 *
7 * This software/database is a "United States Government Work" under the
8 * terms of the United States Copyright Act. It was written as part of
9 * the author's official duties as a United States Government employee and
10 * thus cannot be copyrighted. This software/database is freely available
11 * to the public for use. The National Library of Medicine and the U.S.
12 * Government do not place any restriction on its use or reproduction.
13 * We would, however, appreciate having the NCBI and the author cited in
14 * any work or product based on this material
15 *
16 * Although all reasonable efforts have been taken to ensure the accuracy
17 * and reliability of the software and data, the NLM and the U.S.
18 * Government do not and cannot warrant the performance or results that
19 * may be obtained by using this software or data. The NLM and the U.S.
20 * Government disclaim all warranties, express or implied, including
21 * warranties of performance, merchantability or fitness for any particular
22 * purpose.
23 *
24 * ===========================================================================
25 *
26 * File Name: sequinx.c
27 *
28 * Author: Jonathan Kans
29 *
30 * Version Creation Date: 1/22/95
31 *
32 * $Revision: 6.0 $
33 *
34 * File Description: This file is for you to modify to add your own custom functions
35 * to sequin.
36 *
37 * Modifications:
38 * --------------------------------------------------------------------------
39 * Date Name Description of modification
40 * ------- ---------- -----------------------------------------------------
41 *
42 *
43 * ==========================================================================
44 */
45
46 #include "sequin.h"
47
48 /* if DO_DEMO is define when this is compiled and sequiny.c is compiled
49 and linked, then the simple demo of adding a proceedure of your own
50 (in this case to edit Bioseqs, but it could be anything) will work. */
51
52
53 #ifdef DO_DEMO
54 #include "sequiny.h"
55 #endif
56
57 extern void InitSequinExtras (void)
58 {
59
60 #ifdef DO_DEMO
61 REGISTER_MY_BIOSEQ_EDIT; /* register the function in sequiny.c */
62 /* tough isn't it? */
63 #endif
64
65 }
66
67 extern void FiniSequinExtras (void)
68
69 {
70 }
71
72
73 |
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |