lib.rs 3.7 KB

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