lib.rs 3.3 KB

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