lib.rs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* automatically generated by rust-bindgen */
  2. #[no_mangle]
  3. pub extern "C" fn isalnum(arg1: libc::c_int) -> libc::c_int {
  4. unimplemented!();
  5. }
  6. #[no_mangle]
  7. pub extern "C" fn isalpha(arg1: libc::c_int) -> libc::c_int {
  8. unimplemented!();
  9. }
  10. #[no_mangle]
  11. pub extern "C" fn isascii(arg1: libc::c_int) -> libc::c_int {
  12. unimplemented!();
  13. }
  14. #[no_mangle]
  15. pub extern "C" fn iscntrl(arg1: libc::c_int) -> libc::c_int {
  16. unimplemented!();
  17. }
  18. #[no_mangle]
  19. pub extern "C" fn isdigit(arg1: libc::c_int) -> libc::c_int {
  20. unimplemented!();
  21. }
  22. #[no_mangle]
  23. pub extern "C" fn isgraph(arg1: libc::c_int) -> libc::c_int {
  24. unimplemented!();
  25. }
  26. #[no_mangle]
  27. pub extern "C" fn islower(arg1: libc::c_int) -> libc::c_int {
  28. unimplemented!();
  29. }
  30. #[no_mangle]
  31. pub extern "C" fn isprint(arg1: libc::c_int) -> libc::c_int {
  32. unimplemented!();
  33. }
  34. #[no_mangle]
  35. pub extern "C" fn ispunct(arg1: libc::c_int) -> libc::c_int {
  36. unimplemented!();
  37. }
  38. #[no_mangle]
  39. pub extern "C" fn isspace(arg1: libc::c_int) -> libc::c_int {
  40. unimplemented!();
  41. }
  42. #[no_mangle]
  43. pub extern "C" fn isupper(arg1: libc::c_int) -> libc::c_int {
  44. unimplemented!();
  45. }
  46. #[no_mangle]
  47. pub extern "C" fn isxdigit(arg1: libc::c_int) -> libc::c_int {
  48. unimplemented!();
  49. }
  50. #[no_mangle]
  51. pub extern "C" fn toascii(arg1: libc::c_int) -> libc::c_int {
  52. unimplemented!();
  53. }
  54. #[no_mangle]
  55. pub extern "C" fn tolower(arg1: libc::c_int) -> libc::c_int {
  56. unimplemented!();
  57. }
  58. #[no_mangle]
  59. pub extern "C" fn toupper(arg1: libc::c_int) -> libc::c_int {
  60. unimplemented!();
  61. }