如何在C头中定义BYTE类型的变量?

发布于 2024-12-15 11:41:50 字数 49 浏览 0 评论 0原文

我的主程序使用一个变量来存储指向字节的指针。

我如何在标题中定义它?

My main program uses a variable that stores the pointer to a byte.

How would I define that in the header?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

长途伴 2024-12-22 11:41:50

如果你使用C99,你可以这样做:

#include <stdint.h>


uint8_t *pointer_to_byte;

If you use C99, you could do:

#include <stdint.h>


uint8_t *pointer_to_byte;
金兰素衣 2024-12-22 11:41:50

字节不是标准类型,但在许多系统上任何无符号字符都可以在 Windows 上完成工作,我更熟悉 Windows 标头中有一个 BYTE 的 typedef

Byte is not a standard type but on many system any unsigned char will do the job on windows which I am more familiar there is a typedef for BYTE which is available in the windows headders

无所谓啦 2024-12-22 11:41:50

如果您正在编写与泛型编程相关的内容,则应该使用 void *。
对于大多数系统,您可以使用 unsigned char *。

If you are writing something which relates to generic programming,you should use the void *.
for most of the systems though you can use unsigned char *.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文