tree: 10091c51af0e379f1c5adbf9dbfadbf18d9b72a8 [path history] [tgz]
  1. all-impl.c
  2. floatconv-submodule-code.c
  3. floatconv-submodule-data.c
  4. fundamental-private.h
  5. fundamental-public.h
  6. image-private.h
  7. image-public.h
  8. intconv-submodule.c
  9. io-private.h
  10. io-public.h
  11. magic-submodule.c
  12. memory-private.h
  13. memory-public.h
  14. pixconv-submodule.c
  15. range-private.h
  16. range-public.h
  17. README.md
  18. strconv-private.h
  19. strconv-public.h
  20. token-private.h
  21. token-public.h
  22. utf8-submodule.c
internal/cgen/base/README.md

C Base Code

This directory (base) and its sibling (auxiliary) contain C and C++ code respectively. This C/C++ code combines with the transpiled-to-C/C++ form of the Wuffs code in the top-level std directory to create the “single file C/C++ library” form of the Wuffs standard library.

  • From Wuffs-the-language's point of view, this directory contains implementations of the built-in base package types, such as I/O buffers, ranges and rects and statuses.
  • From application code‘s point of view (Wuffs is for writing libraries not applications), this directory also contains helper functions for working with those base types, such as constructing an I/O buffer from a pointer and a length, that aren’t relevant to Wuffs-the-language code.
  • This directory also contains some functionality (e.g. pixel conversion and string conversion) that, in the future, could possibly be Wuffs packages under std. For optimal performance, they sometimes require programming language features (e.g. function-pointer typed variables, SIMD acceleration) that are not yet available in Wuffs-the-language (or were not available at the time they were added). In the short term, it was more practical to implement them in carefully hand-written C/C++, in this directory. In the long term, they could migrate out of base to be under std, but any base API removal would require a Wuffs version number bump.

Making Changes

After editing source code in this directory, to see those changes when generating the C/C++ form of Wuffs' standard library:

go install github.com/google/wuffs/cmd/wuffs-c && wuffs gen base

This should modify the wuffs-unsupported-snapshot.c file.