#include <stdint.h> #include <string.h> #define HASH_SIZE 101 #define NUM_SERVERS 9 #define ...
修改为 LOCAL_MODULE := libfuse_forexfat 3.修改exfat下的Android.mk -I$(EXFAT_ROOT)/../fuse/include 修改为 -I$(EXFAT_ROOT)/../libfuse_forexfat/include LOCAL_STATIC_LIBRARIES += libexfat libfuse 修改为 LOCAL_STATIC_LIBRARIES += libexfat libfuse_forexfat 然后在include $(BUILD_EXECU...
index 0000000000000..fa4442abf0f5c--- /dev/null+++ b/libc/include/llvm-libc-macros/elf-macros.h@@ -0,0 +1,18 @@+//===-- Definition of macros from elf.h ---===//+//+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.+// See https://llvm...
#include<stdint.h>#include<stddef.h>#include<string.h>typedefvoid*upb_msg;struct upb_decstate;typedef struct upb_decstate upb_decstate;// The standard set of arguments passed to each parsing function.// Thanks to x86-64 calling conventions, these will be passed in registers.#defineUPB_PARSE...
#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include "binary.h" #include "libcrc.h" /* To compile with Microsoft Visual Studio */ #ifdef _MSC_VER #define _CRT_SECURE_NO_WARNINGS #endif //#if defined(_WIN32) || defined(...
allocator.h /usr/include/c++/9/bits/atomic_base.h /usr/include/c++/9/bits/atomic_futex.h /usr/include/c++/9/bits/atomic_lockfree_defines.h /usr/include/c++/9/bits/basic_ios.h /usr/include/c++/9/bits/basic_ios.tcc /usr/include/c++/9/bits/basic_string.h /usr/include/c++/9/bits...
// disk.c#include<stdint.h>#include<stddef.h>voidcheck_disk(){uint8_tstatus=read_status_register();if(status&0x01){// 硬盘准备好// 进行读取或写入}} 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 5. 实现用户自定义设置界面
include --enable-version-specific-runtime-libs --enable-fully-dynamic-string --enable-libgomp --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-lto --enable-threads=win32 --program-suffix=-win32 --program-prefix=x86_64-w64-mingw32- --target=x86_64-w64-mingw32 --with-as=/...
#include<stdint.h>#include<stdio.h>typedefuint64_tL;typedefintI;typedefvoidV;typedefstruct{Lh,l;...
1#ifndef __THREAD_THREAD_H2#define__THREAD_THREAD_H3#include"stdint.h"45/*自定义通用函数类型,它将在很多线程程序中作为参数类型*/6typedefvoidthread_func(void*);78/*进程或线程状态*/9enumtask_status{10TASK_RUNNING,11TASK_READY,12TASK_BLOCKED,13TASK_WAITING,14TASK_HANGING,15TASK_DIED16};1718...