comparison adler32.h @ 477:8d25a4b50588 libavutil

Pure, const and malloc attributes to libavutil. Patch by Zuxy Meng: zuxy meng gmail com Original thread: [FFmpeg-devel] [PATCH] Pure, const and malloc attributes to libavutil Date: 03/18/2008 6:09 AM
author benoit
date Tue, 18 Mar 2008 15:27:15 +0000
parents d0f3bb6e367e
children 8d2c05ebf5f1
comparison
equal deleted inserted replaced
476:3075323f2c2c 477:8d25a4b50588
22 #define FFMPEG_ADLER32_H 22 #define FFMPEG_ADLER32_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, 26 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
27 unsigned int len); 27 unsigned int len) av_pure;
28 28
29 #endif /* FFMPEG_ADLER32_H */ 29 #endif /* FFMPEG_ADLER32_H */