tree_types.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * tree_types.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 45f6145849c7765b0336b3a88e463fdfaec0b6c6 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #define _GNU_SOURCE
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include "common.h"
  29. /* Compares integer value numbers in 32 bit range */
  30. int compare_int(int * num1, int * num2) {
  31. if ((*num1) < (*num2))
  32. return -1;
  33. if ((*num1) > (*num2))
  34. return 1;
  35. return 0;
  36. }
  37. /* Compares strings in lexographical order */
  38. int compare_string(char * str1, char * str2) {
  39.   //  printf("comparing "%s" to "%s"n", str1, str2);
  40.   //return strcmp(str1, str2);
  41.   return strncmp(str1, str2, MAX_TOKEN_SIZE-1);
  42. }
  43. /* Compares a string in version order. That is, file1 < file2 < file10 */
  44. int compare_string_version(char * str1, char * str2) {
  45.   return strverscmp(str1, str2);
  46. }
  47. void free_int(void * num) {
  48. free(num);
  49. }
  50. void free_string(char * string) {
  51. free(string);
  52. }
  53.  
  54. void * copy_int(int * num) {
  55. int * new_num;
  56. if ((new_num = (int*)malloc(sizeof(int))) == NULL)
  57. return NULL;
  58. *new_num = *num;
  59. return (void*)new_num;
  60. }
  61. void * copy_string(char * string) {
  62. char * new_string;
  63. if ((new_string = (char*)malloc(MAX_TOKEN_SIZE)) == NULL)
  64. return NULL;
  65. strncpy(new_string, string, MAX_TOKEN_SIZE-1);
  66. return (void*)new_string;
  67. }