The document describes Ring's code generator tool for wrapping C/C++ libraries. The code generator reads a configuration file specifying C function prototypes and generates Ring wrapper functions. Configuration files list C prototypes to wrap functions simply. For example, listing "ALLEGRO_DISPLAY *al_create_display(int w, int h)" wraps the al_create_display function. The generator produces Ring functions that call the C functions, checking parameters and returning values properly. This allows Ring programs to easily utilize existing C libraries.