~ubuntu-branches/debian/experimental/ncbi-tools6/experimental

« back to all changes in this revision

Viewing changes to corelib/ncbibs.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-03-27 12:00:15 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050327120015-embhesp32nj73p9r
Tags: 6.1.20041020-3
* Fix FTBFS under GCC 4.0 caused by inconsistent use of "static" on
  functions.  (Closes: #295110.)
* Add a watch file, now that we can.  (Upstream's layout needs version=3.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
*
30
30
* Version Creation Date:  1/1/91
31
31
*
32
 
* $Revision: 6.3 $
 
32
* $Revision: 6.4 $
33
33
*
34
34
* File Description:
35
35
*   ByteStore typedefs, prototypes, and defines
42
42
*
43
43
*
44
44
* $Log: ncbibs.h,v $
 
45
* Revision 6.4  2003/01/21 17:56:24  kans
 
46
* minor fix in BSAdd, comment that BSAdd does not change totlen
 
47
*
45
48
* Revision 6.3  2000/05/26 23:34:58  kans
46
49
* added BSDupAndSwapUint4 for copying and swapping of UID lists passed over network to BIG_ENDIAN server
47
50
*
126
129
*       returns bytes added
127
130
*       if (use_min_size) then does not add anything smaller than MIN_BSALLOC
128
131
*
 
132
*       BSAdd does not change the length of the byte store.  When inserting in
 
133
*       the middle of the chain, it is up to the calling function to adjust the
 
134
*       length after writing the bytes.
 
135
*
129
136
*****************************************************************************/
130
137
NLM_EXTERN Nlm_Int4 LIBCALL Nlm_BSAdd PROTO((Nlm_ByteStorePtr bsp, Nlm_Int4 len, Nlm_Boolean use_min_size));
131
138