OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2007 Mans Rullgard | 2 * Copyright (c) 2007 Mans Rullgard |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 70 matching lines...) Loading... |
81 * appended) | 81 * appended) |
82 * @param size total size of the destination buffer | 82 * @param size total size of the destination buffer |
83 * @param fmt printf-compatible format string, specifying how the | 83 * @param fmt printf-compatible format string, specifying how the |
84 * following parameters are used | 84 * following parameters are used |
85 * @return the length of the string that would have been generated | 85 * @return the length of the string that would have been generated |
86 * if enough space had been available | 86 * if enough space had been available |
87 */ | 87 */ |
88 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...); | 88 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...); |
89 | 89 |
90 #endif /* AVUTIL_AVSTRING_H */ | 90 #endif /* AVUTIL_AVSTRING_H */ |
OLD | NEW |