ldas-tools-al  2.6.5
Macros | Functions | Variables
SIZEOF_DOUBLE.c File Reference
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
Include dependency graph for SIZEOF_DOUBLE.c:

Macros

#define SIZE   (sizeof(double))
 

Functions

int main (int argc, char *argv[])
 

Variables

char info_size []
 

Macro Definition Documentation

◆ SIZE

#define SIZE   (sizeof(double))

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Variable Documentation

◆ info_size

char info_size[]
Initial value:
= {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
'\0'}
#define SIZE
Definition: SIZEOF_DOUBLE.c:23