gsm_destroy.c
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:0k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
  3.  * Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
  4.  * details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
  5.  */
  6. #include "gsm.h"
  7. #include "config.h"
  8. #ifdef HAS_STDLIB_H
  9. # include <stdlib.h>
  10. #else
  11. # ifdef HAS_MALLOC_H
  12. # include  <malloc.h>
  13. # else
  14. extern void free();
  15. # endif
  16. #endif
  17. void gsm_destroy (gsm S)
  18. {
  19. if (S) free((char *)S);
  20. }