rename string.* to more unambiguous local_string_utils.*
authorJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 17 Dec 2003 05:30:26 +0000 (05:30 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 17 Dec 2003 05:30:26 +0000 (05:30 +0000)
src/flac/Makefile.am
src/flac/Makefile.lite
src/flac/flac.dsp
src/flac/local_string_utils.c [moved from src/flac/string.c with 100% similarity]
src/flac/local_string_utils.h [moved from src/flac/string.h with 93% similarity]
src/flac/main.c

index d0d9485..5daf9b4 100644 (file)
@@ -31,7 +31,7 @@ flac_SOURCES = \
        decode.c \
        encode.c \
        main.c \
-       string.c \
+       local_string_utils.c \
        utils.c \
        vorbiscomment.c \
        analyze.h \
index f4c9854..7ad289d 100644 (file)
@@ -41,8 +41,8 @@ SRCS_C = \
        analyze.c \
        decode.c \
        encode.c \
+       local_string_utils.c \
        main.c \
-       string.c \
        utils.c \
        vorbiscomment.c
 
index 40fc17e..6a3aa09 100644 (file)
@@ -105,7 +105,7 @@ SOURCE=.\main.c
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=.\string.c\r
+SOURCE=.\local_string_utils.c\r
 # End Source File\r
 # Begin Source File\r
 \r
similarity index 93%
rename from src/flac/string.h
rename to src/flac/local_string_utils.h
index a51c3d4..71355f6 100644 (file)
@@ -16,8 +16,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-#ifndef flac__string_h
-#define flac__string_h
+#ifndef flac__local_string_utils_h
+#define flac__local_string_utils_h
 
 #include <stdlib.h> /* for size_t */
 
index 61806b7..b9fa7ee 100644 (file)
@@ -38,7 +38,7 @@
 #include "analyze.h"
 #include "decode.h"
 #include "encode.h"
-#include "string.h" /* for strlcat() and strlcpy() */
+#include "local_string_utils.h" /* for flac__strlcat() and flac__strlcpy() */
 #include "utils.h"
 #include "vorbiscomment.h"