Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

18 Zeilen
331B

  1. /*
  2. * This file is a part of SMalloc.
  3. * SMalloc is MIT licensed.
  4. * Copyright (c) 2017 Andrey Rys.
  5. */
  6. #include "smalloc_i.h"
  7. void *sm_calloc_pool(struct smalloc_pool *spool, size_t x, size_t y)
  8. {
  9. return sm_zalloc_pool(spool, x * y);
  10. }
  11. void *sm_calloc(size_t x, size_t y)
  12. {
  13. return sm_calloc_pool(&smalloc_curr_pool, x, y);
  14. }