00001 #ifndef _BYTE_H_ 00002 #define _BYTE_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2004-11-01 00006 Part of the MapQuant suite library "massspec.lib" 00007 */ 00008 00018 typedef unsigned char Byte; 00019 00020 Byte* ByteArray_create(int size); 00021 void ByteArray_init(Byte* array, int size); 00022 Byte* ByteArray_copy(Byte* array, int size); 00023 00024 #endif 00025