Mercurial > libavutil.hg
annotate avstring.c @ 801:0f0768396e60 libavutil
Place { of the function where indent -kr wants it.
Also more consistent with the rest of the code.
| author | michael |
|---|---|
| date | Mon, 14 Dec 2009 01:15:02 +0000 |
| parents | 197e6e41f46f |
| children | 536c2e94defa |
| rev | line source |
|---|---|
| 347 | 1 /* |
| 2 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard | |
| 3 * Copyright (c) 2007 Mans Rullgard | |
| 4 * | |
| 5 * This file is part of FFmpeg. | |
| 6 * | |
| 7 * FFmpeg is free software; you can redistribute it and/or | |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2.1 of the License, or (at your option) any later version. | |
| 11 * | |
| 12 * FFmpeg is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
| 18 * License along with FFmpeg; if not, write to the Free Software | |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 20 */ | |
| 21 | |
|
369
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
22 #include <stdarg.h> |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
23 #include <stdio.h> |
| 347 | 24 #include <string.h> |
| 25 #include <ctype.h> | |
| 26 #include "avstring.h" | |
| 800 | 27 #include "mem.h" |
| 347 | 28 |
| 29 int av_strstart(const char *str, const char *pfx, const char **ptr) | |
| 30 { | |
| 360 | 31 while (*pfx && *pfx == *str) { |
| 32 pfx++; | |
| 33 str++; | |
| 34 } | |
| 347 | 35 if (!*pfx && ptr) |
| 36 *ptr = str; | |
| 37 return !*pfx; | |
| 38 } | |
| 39 | |
| 40 int av_stristart(const char *str, const char *pfx, const char **ptr) | |
| 41 { | |
| 360 | 42 while (*pfx && toupper((unsigned)*pfx) == toupper((unsigned)*str)) { |
| 43 pfx++; | |
| 44 str++; | |
| 45 } | |
| 347 | 46 if (!*pfx && ptr) |
| 47 *ptr = str; | |
| 48 return !*pfx; | |
| 49 } | |
| 50 | |
| 51 size_t av_strlcpy(char *dst, const char *src, size_t size) | |
| 52 { | |
| 53 size_t len = 0; | |
| 54 while (++len < size && *src) | |
| 55 *dst++ = *src++; | |
| 56 if (len <= size) | |
| 57 *dst = 0; | |
| 58 return len + strlen(src) - 1; | |
| 59 } | |
| 60 | |
| 61 size_t av_strlcat(char *dst, const char *src, size_t size) | |
| 62 { | |
| 63 size_t len = strlen(dst); | |
| 64 if (size <= len + 1) | |
| 65 return len + strlen(src); | |
| 66 return len + av_strlcpy(dst + len, src, size - len); | |
| 67 } | |
|
369
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
68 |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
69 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...) |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
70 { |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
71 int len = strlen(dst); |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
72 va_list vl; |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
73 |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
74 va_start(vl, fmt); |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
75 len += vsnprintf(dst + len, size > len ? size - len : 0, fmt, vl); |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
76 va_end(vl); |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
77 |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
78 return len; |
|
2cd0add8ac0c
Implement av_strlcatf(): a strlcat which adds a printf style formatted string
lucabe
parents:
360
diff
changeset
|
79 } |
|
799
cb32a271f4cd
Add a function to convert a number to a av_malloced string.
michael
parents:
638
diff
changeset
|
80 |
| 801 | 81 char *av_d2str(double d) |
| 82 { | |
|
799
cb32a271f4cd
Add a function to convert a number to a av_malloced string.
michael
parents:
638
diff
changeset
|
83 char *str= av_malloc(16); |
|
cb32a271f4cd
Add a function to convert a number to a av_malloced string.
michael
parents:
638
diff
changeset
|
84 if(str) snprintf(str, 16, "%f", d); |
|
cb32a271f4cd
Add a function to convert a number to a av_malloced string.
michael
parents:
638
diff
changeset
|
85 return str; |
|
cb32a271f4cd
Add a function to convert a number to a av_malloced string.
michael
parents:
638
diff
changeset
|
86 } |
