index.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <html>
  2. <head>
  3. <title>OS/161 C Standard Library</title>
  4. </head>
  5. <body bgcolor=#ffffff>
  6. <h2 align=center>OS/161 C Standard Library (libc)</h2>
  7. <p align=center>
  8. <A HREF=..>Top</A> |
  9. <A HREF=../bin>Binaries</A> |
  10. <A HREF=../sbin>Sysadmin binaries</A> |
  11. <A HREF=../testbin>Test binaries</A> |
  12. <A HREF=../syscall>System calls</A> |
  13. <A HREF=../dev>Device drivers</A> |
  14. <A HREF=../misc>Miscellaneous</A>
  15. </p>
  16. <br>
  17. <ul>
  18. <li> <A HREF=__vprintf.html>__vprintf</A> - printf backend
  19. <li> <A HREF=abort.html>abort</A> - abnormal program termination
  20. <li> <A HREF=assert.html>assert</A> - check assumptions at run time
  21. <li> <A HREF=atoi.html>atoi</A> - convert ascii to integer
  22. <li> <A HREF=bzero.html>bzero</A> - zero out memory
  23. <li> <A HREF=calloc.html>calloc</A> - allocate and clear memory
  24. <li> <A HREF=err.html>err, errx</A> - print error messages
  25. <li> <A HREF=exit.html>exit</A> - terminate program
  26. <li> <A HREF=free.html>free</A> - release/deallocate memory
  27. <li> <A HREF=getchar.html>getchar</A> - read character from standard input
  28. <li> <A HREF=getcwd.html>getcwd</A> - get name of current working directory
  29. <li> <A HREF=setjmp.html>longjmp</A> - non-local jump operations
  30. <li> <A HREF=malloc.html>malloc</A> - allocate memory
  31. <li> <A HREF=memcpy.html>memcpy</A> - copy region of memory
  32. <li> <A HREF=memmove.html>memmove</A> - copy region of memory
  33. <li> <A HREF=memset.html>memset</A> - initialize region of memory
  34. <li> <A HREF=printf.html>printf</A> - print formatted output
  35. <li> <A HREF=putchar.html>putchar</A> - print character to standard output
  36. <li> <A HREF=puts.html>puts</A> - print string to standard output
  37. <li> <A HREF=random.html>random</A> - pseudorandom number generation
  38. <li> <A HREF=realloc.html>realloc</A> - resize allocated memory
  39. <li> <A HREF=setjmp.html>setjmp</A> - non-local jump operations
  40. <li> <A HREF=snprintf.html>snprintf</A> - print formatted text to string
  41. <li> <A HREF=stdarg.html>stdarg</A> - handle functions with variable arguments
  42. <li> <A HREF=strcat.html>strcat</A> - concatenate strings
  43. <li> <A HREF=strchr.html>strchr</A> - search string for character
  44. <li> <A HREF=strcmp.html>strcmp</A> - compare strings
  45. <li> <A HREF=strcpy.html>strcpy</A> - copy string
  46. <li> <A HREF=strerror.html>strerror</A> - get error message for error code
  47. <li> <A HREF=strlen.html>strlen</A> - determine length of string
  48. <li> <A HREF=strrchr.html>strrchr</A> - search string for character
  49. <li> <A HREF=strtok.html>strtok</A> - tokenize string
  50. <li> <A HREF=strtok_r.html>strtok_r</A> - tokenize string reentrantly
  51. <li> <A HREF=system.html>system</A> - run command as subprocess
  52. <li> <A HREF=time.html>time</A> - get time of day
  53. <li> <A HREF=err.html>verr, verrx</A> - print error messages
  54. <li> <A HREF=printf.html>vprintf</A> - print formatted output
  55. <li> <A HREF=snprintf.html>vsnprintf</A> - print formatted text to string
  56. <li> <A HREF=warn.html>vwarn, vwarnx</A> - print warning messages
  57. <li> <A HREF=warn.html>warn, warnx</A> - print warning messages
  58. </ul>
  59. </body>
  60. </html>