Mercurial > mplayer.hg
view gui/util/string.c @ 34110:6dc5c4821d07
sync with en/mplayer.1 rev. 34190
author | jrash |
---|---|
date | Fri, 14 Oct 2011 12:55:09 +0000 |
parents | d7527ee45784 |
children | a345e7162d0a |
line wrap: on
line source
/* * This file is part of MPlayer. * * MPlayer is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * MPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with MPlayer; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "string.h" /** * @brief Convert a string to lower case. * * @param string to be converted * * @return converted string * * @note Only characters from A to Z will be converted and this is an in-place conversion. */ char *strlower(char *in) { char *p = in; while (*p) { if (*p >= 'A' && *p <= 'Z') *p += 'a' - 'A'; p++; } return in; } /** * @brief Swap characters in a string. * * @param in string to be processed * @param from character to be swapped * @param to character to swap in * * @return processed string * * @note All occurrences will be swapped and this is an in-place processing. */ char *strswap(char *in, char from, char to) { char *p = in; while (*p) { if (*p == from) *p = to; p++; } return in; } /** * @brief Remove all space characters from a string, * but leave text enclosed in quotation marks untouched. * * @param in string to be processed * * @return processed string * * @note This is an in-place processing. */ char *trim(char *in) { char *src, *dest; int freeze = 0; src = dest = in; while (*src) { if (*src == '"') freeze = !freeze; if (freeze || (*src != ' ')) *dest++ = *src; src++; } *dest = 0; return in; } /** * @brief Remove a comment from a string, * but leave text enclosed in quotation marks untouched. * * A comment starts either with a semicolon anywhere in the string * or with a number sign character at the very beginning. * * @param in string to be processed * * @return string without comment * * @note This is an in-place processing, i.e. @a in will be shortened. */ char *decomment(char *in) { char *p; int nap = 0; p = in; if (*p == '#') *p = 0; while (*p) { if (*p == '"') nap = !nap; if ((*p == ';') && !nap) { *p = 0; break; } p++; } return in; } char *gstrchr(const char *str, int c) { if (!str) return NULL; return strchr(str, c); } int gstrcmp(const char *a, const char *b) { if (!a && !b) return 0; if (!a || !b) return -1; return strcmp(a, b); } int gstrcasecmp(const char *a, const char *b) { if (!a && !b) return 0; if (!a || !b) return -1; return strcasecmp(a, b); } int gstrncmp(const char *a, const char *b, int n) { if (!a && !b) return 0; if (!a || !b) return -1; return strncmp(a, b, n); } /** * @brief Duplicate a string. * * If @a str is NULL, it returns NULL. * The string is duplicated by calling strdup(). * * @param str string to be duplicated * * @return duplicated string (newly allocated) */ char *gstrdup(const char *str) { if (!str) return NULL; return strdup(str); } /** * @brief Assign a duplicated string. * * The string is duplicated by calling #gstrdup(). * * @note @a *old is freed prior to the assignment. * * @param old pointer to a variable suitable to store the new pointer * @param str string to be duplicated */ void setdup(char **old, const char *str) { free(*old); *old = gstrdup(str); } /** * @brief Assign a newly allocated string * containing the path created from a directory and a filename. * * @note @a *old is freed prior to the assignment. * * @param old pointer to a variable suitable to store the new pointer * @param dir directory * @param name filename */ void setddup(char **old, const char *dir, const char *name) { free(*old); *old = malloc(strlen(dir) + strlen(name) + 2); if (*old) sprintf(*old, "%s/%s", dir, name); }