You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. #include "modular.h"
  2. pipi_image_t *pipi_load_modular(const char *name)
  3. {
  4. return pipi_load_jpeg(name);
  5. }
  6. int pipi_save_modular(pipi_image_t *img, const char *name)
  7. {
  8. return pipi_save_jpeg(img, name);
  9. }