types.tex

来自「嵌入式文件系统 EFSL 0.3.5 / 嵌入式文件系统 EFSL 0.3.5」· TEX 代码 · 共 27 行

TEX
27
字号
Standard C data types have the annoying tendency to have different sizes on difference compilersand platforms. Therefore we have created 9 new types that are used everywhere throughout the library.When you implement your platform you should check if any of the existing one matches your hardware,or create a new one.\\\\Here's an overview:\\\\\begin{tabular}{|p{4cm}|l|l|}	\hline	\textbf{Type} & \textbf{Size} & \textbf{Signedness}\\	\hline	\hline	\texttt{eint8} & 1 byte & default to platform \\	\texttt{esint8} & 1 byte & signed \\	\texttt{euint8} & 1 byte & unsigned \\	\hline	\texttt{eint16} & 2 bytes & default to platform \\	\texttt{esint16} & 2 bytes & signed \\	\texttt{euint16} & 2 bytes & unsigned \\	\hline	\texttt{eint32} & 4 bytes & default to platform \\	\texttt{esint32} & 4 bytes & signed \\	\texttt{euint32} & 4 bytes & unsigned \\	\hline\end{tabular}$ $\\\\\\You will find the relevant code in the file \filename{types.h} in the directory \filename{inc/}.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?