|
|
|||
File indexing completed on 2026-04-09 07:49:42
0001 #pragma once 0002 0003 #include <cstdint> 0004 0005 union uif64_t { 0006 uint64_t u ; 0007 int64_t i ; 0008 double f ; 0009 }; 0010 0011 union uif32_t { 0012 uint32_t u ; 0013 int32_t i ; 0014 float f ; 0015 }; 0016 0017 union ui16_t { 0018 uint16_t u ; 0019 int16_t i ; 0020 }; 0021 0022
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|