tree_types.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tree_types.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: tree_types.c 8205 2004-07-17 13:55:48Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet <asmax@videolan.org>
  8.  *          code from projectM http://xmms-projectm.sourceforge.net
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include "common.h"
  28. /* Compares integer value numbers in 32 bit range */
  29. int compare_int(int * num1, int * num2) {
  30. if ((*num1) < (*num2))
  31. return -1;
  32. if ((*num1) > (*num2))
  33. return 1;
  34. return 0;
  35. }
  36. /* Compares strings in lexographical order */
  37. int compare_string(char * str1, char * str2) {
  38.   //  printf("comparing "%s" to "%s"n", str1, str2);
  39.   //return strcmp(str1, str2);
  40.   return strncmp(str1, str2, MAX_TOKEN_SIZE-1);
  41. }
  42. /* Compares a string in version order. That is, file1 < file2 < file10 */
  43. int compare_string_version(char * str1, char * str2) {
  44.   return strverscmp(str1, str2);
  45. }
  46. void free_int(void * num) {
  47. free(num);
  48. }
  49. void free_string(char * string) {
  50. free(string);
  51. }
  52.  
  53. void * copy_int(int * num) {
  54. int * new_num;
  55. if ((new_num = (int*)malloc(sizeof(int))) == NULL)
  56. return NULL;
  57. *new_num = *num;
  58. return (void*)new_num;
  59. }
  60. void * copy_string(char * string) {
  61. char * new_string;
  62. if ((new_string = (char*)malloc(MAX_TOKEN_SIZE)) == NULL)
  63. return NULL;
  64. strncpy(new_string, string, MAX_TOKEN_SIZE-1);
  65. return (void*)new_string;
  66. }