lib.rs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /* automatically generated by rust-bindgen */
  2. #[no_mangle]
  3. pub extern "C" fn memccpy(
  4. arg1: *mut libc::c_void,
  5. arg2: *const libc::c_void,
  6. arg3: libc::c_int,
  7. arg4: usize,
  8. ) -> *mut libc::c_void {
  9. unimplemented!();
  10. }
  11. #[no_mangle]
  12. pub extern "C" fn memchr(
  13. arg1: *const libc::c_void,
  14. arg2: libc::c_int,
  15. arg3: usize,
  16. ) -> *mut libc::c_void {
  17. unimplemented!();
  18. }
  19. #[no_mangle]
  20. pub extern "C" fn memcmp(
  21. arg1: *const libc::c_void,
  22. arg2: *const libc::c_void,
  23. arg3: usize,
  24. ) -> libc::c_int {
  25. unimplemented!();
  26. }
  27. #[no_mangle]
  28. pub extern "C" fn memcpy(
  29. arg1: *mut libc::c_void,
  30. arg2: *const libc::c_void,
  31. arg3: usize,
  32. ) -> *mut libc::c_void {
  33. unimplemented!();
  34. }
  35. #[no_mangle]
  36. pub extern "C" fn memmove(
  37. arg1: *mut libc::c_void,
  38. arg2: *const libc::c_void,
  39. arg3: usize,
  40. ) -> *mut libc::c_void {
  41. unimplemented!();
  42. }
  43. #[no_mangle]
  44. pub extern "C" fn memset(
  45. arg1: *mut libc::c_void,
  46. arg2: libc::c_int,
  47. arg3: usize,
  48. ) -> *mut libc::c_void {
  49. unimplemented!();
  50. }
  51. #[no_mangle]
  52. pub extern "C" fn strcat(arg1: *mut libc::c_char, arg2: *const libc::c_char) -> *mut libc::c_char {
  53. unimplemented!();
  54. }
  55. #[no_mangle]
  56. pub extern "C" fn strchr(arg1: *const libc::c_char, arg2: libc::c_int) -> *mut libc::c_char {
  57. unimplemented!();
  58. }
  59. #[no_mangle]
  60. pub extern "C" fn strcmp(arg1: *const libc::c_char, arg2: *const libc::c_char) -> libc::c_int {
  61. unimplemented!();
  62. }
  63. #[no_mangle]
  64. pub extern "C" fn strcoll(arg1: *const libc::c_char, arg2: *const libc::c_char) -> libc::c_int {
  65. unimplemented!();
  66. }
  67. #[no_mangle]
  68. pub extern "C" fn strcpy(arg1: *mut libc::c_char, arg2: *const libc::c_char) -> *mut libc::c_char {
  69. unimplemented!();
  70. }
  71. #[no_mangle]
  72. pub extern "C" fn strcspn(arg1: *const libc::c_char, arg2: *const libc::c_char) -> libc::c_ulong {
  73. unimplemented!();
  74. }
  75. #[no_mangle]
  76. pub extern "C" fn strdup(arg1: *const libc::c_char) -> *mut libc::c_char {
  77. unimplemented!();
  78. }
  79. #[no_mangle]
  80. pub extern "C" fn strerror(arg1: libc::c_int) -> *mut libc::c_char {
  81. unimplemented!();
  82. }
  83. #[no_mangle]
  84. pub extern "C" fn strlen(arg1: *const libc::c_char) -> libc::c_ulong {
  85. unimplemented!();
  86. }
  87. #[no_mangle]
  88. pub extern "C" fn strncat(
  89. arg1: *mut libc::c_char,
  90. arg2: *const libc::c_char,
  91. arg3: usize,
  92. ) -> *mut libc::c_char {
  93. unimplemented!();
  94. }
  95. #[no_mangle]
  96. pub extern "C" fn strncmp(
  97. arg1: *const libc::c_char,
  98. arg2: *const libc::c_char,
  99. arg3: usize,
  100. ) -> libc::c_int {
  101. unimplemented!();
  102. }
  103. #[no_mangle]
  104. pub extern "C" fn strncpy(
  105. arg1: *mut libc::c_char,
  106. arg2: *const libc::c_char,
  107. arg3: usize,
  108. ) -> *mut libc::c_char {
  109. unimplemented!();
  110. }
  111. #[no_mangle]
  112. pub extern "C" fn strpbrk(
  113. arg1: *const libc::c_char,
  114. arg2: *const libc::c_char,
  115. ) -> *mut libc::c_char {
  116. unimplemented!();
  117. }
  118. #[no_mangle]
  119. pub extern "C" fn strrchr(arg1: *const libc::c_char, arg2: libc::c_int) -> *mut libc::c_char {
  120. unimplemented!();
  121. }
  122. #[no_mangle]
  123. pub extern "C" fn strspn(arg1: *const libc::c_char, arg2: *const libc::c_char) -> libc::c_ulong {
  124. unimplemented!();
  125. }
  126. #[no_mangle]
  127. pub extern "C" fn strstr(
  128. arg1: *const libc::c_char,
  129. arg2: *const libc::c_char,
  130. ) -> *mut libc::c_char {
  131. unimplemented!();
  132. }
  133. #[no_mangle]
  134. pub extern "C" fn strtok(arg1: *mut libc::c_char, arg2: *const libc::c_char) -> *mut libc::c_char {
  135. unimplemented!();
  136. }
  137. #[no_mangle]
  138. pub extern "C" fn strtok_r(
  139. arg1: *mut libc::c_char,
  140. arg2: *const libc::c_char,
  141. arg3: *mut *mut libc::c_char,
  142. ) -> *mut libc::c_char {
  143. unimplemented!();
  144. }
  145. #[no_mangle]
  146. pub extern "C" fn strxfrm(
  147. arg1: *mut libc::c_char,
  148. arg2: *const libc::c_char,
  149. arg3: usize,
  150. ) -> libc::c_ulong {
  151. unimplemented!();
  152. }