lib.rs 1.3 KB

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