HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
vector.h
Go to the documentation of this file.
1 #ifndef _VECTOR_H
2 #define _VECTOR_H
3 
4 /* vector.c */
5 void V2B_MSB ( uint8_t *B , int index , int size , uint32_t val );
6 void V2B_LSB ( uint8_t *B , int index , int size , uint32_t val );
7 uint32_t B2V_MSB ( uint8_t *B , int index , int size );
8 uint32_t B2V_LSB ( uint8_t *B , int index , int size );
9 void B2S ( uint8_t *B , int index , uint8_t *name , int size );
10 #endif
B2V_MSB
uint32_t B2V_MSB(uint8_t *B, int index, int size)
Convert a byte array into a value bytes are MSB ... LSB order.
Definition: vector.c:58
B2S
void B2S(uint8_t *B, int index, uint8_t *name, int size)
Create a string from data that has no EOS but known size.
Definition: vector.c:98
V2B_MSB
void V2B_MSB(uint8_t *B, int index, int size, uint32_t val)
Convert Value into byte array bytes are MSB ... LSB order.
Definition: vector.c:22
B2V_LSB
uint32_t B2V_LSB(uint8_t *B, int index, int size)
Convert a byte array into a value bytes are LSB ... MSB order.
Definition: vector.c:78
V2B_LSB
void V2B_LSB(uint8_t *B, int index, int size, uint32_t val)
Convert Value into byte array bytes are LSB ... MSB order.
Definition: vector.c:41