furnace/extern/libsndfile-modified/src/test_endswap.def
tildearrow 061991fe60 desubmodulize libsndfile - PLEASE READ
it appears a one-character typo in the cmake_minimum_required line prevents it from compiling under CMake 4.0.
in order to fix that, I had to take this thing out of submodules...

it is recommended to do this after you pull;

git submodule deinit extern/libsndfile
2025-04-02 15:09:53 -05:00

41 lines
600 B
Modula-2

autogen definitions test_endswap.tpl;
int_type = {
name = short ;
value = '0x3210' ;
format = FMT_SHORT ;
} ;
int_type = {
name = int ;
value = '0x76543210' ;
format = FMT_INT ;
} ;
int_type = {
name = int64_t ;
value = '0x0807050540302010LL' ;
format = FMT_INT64 ;
} ;
int_size = {
name = 16 ;
typename = int16_t ;
value = '0x4142' ;
strval = "AB" ;
} ;
int_size = {
name = 32 ;
typename = int32_t ;
value = '0x30313233' ;
strval = "0123" ;
} ;
int_size = {
name = 64 ;
typename = int64_t ;
value = '0x3031323334353637' ;
strval = "01234567" ;
} ;