You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(125) |
Nov
(7) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(9) |
Jun
(150) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(15) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(183) |
2010 |
Jan
|
Feb
(1) |
Mar
(26) |
Apr
(23) |
May
(4) |
Jun
(8) |
Jul
(9) |
Aug
(19) |
Sep
(6) |
Oct
(27) |
Nov
(5) |
Dec
(135) |
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(22) |
May
(8) |
Jun
(8) |
Jul
(2) |
Aug
(12) |
Sep
(3) |
Oct
(13) |
Nov
(31) |
Dec
(40) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(27) |
Jul
(6) |
Aug
(19) |
Sep
(14) |
Oct
(8) |
Nov
(10) |
Dec
(82) |
2013 |
Jan
(12) |
Feb
(14) |
Mar
(11) |
Apr
(4) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(11) |
Sep
(16) |
Oct
(2) |
Nov
(23) |
Dec
(86) |
2014 |
Jan
(1) |
Feb
(18) |
Mar
(5) |
Apr
(13) |
May
(2) |
Jun
(8) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(1) |
Dec
(65) |
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
(6) |
Dec
(41) |
2016 |
Jan
(2) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(5) |
Aug
(8) |
Sep
(3) |
Oct
(26) |
Nov
(11) |
Dec
(45) |
2017 |
Jan
(12) |
Feb
(9) |
Mar
(4) |
Apr
(8) |
May
(20) |
Jun
(13) |
Jul
(18) |
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:44
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ulaw In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/ulaw Modified Files: ulaw.c _ulaw.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: ulaw.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ulaw/ulaw.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ulaw.c 9 Oct 2007 10:07:07 -0000 1.16 --- ulaw.c 16 Oct 2007 02:20:59 -0000 1.17 *************** *** 78,88 **** /* Standard C Libraries */ #include <stdio.h> ! #include <string.h> #include <stdlib.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 78,97 ---- /* Standard C Libraries */ #include <stdio.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <stdlib.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _ulaw.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ulaw/_ulaw.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _ulaw.c 8 Oct 2007 16:49:30 -0000 1.8 --- _ulaw.c 16 Oct 2007 02:20:59 -0000 1.9 *************** *** 77,83 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,83 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:44
|
Update of /cvsroot/sp-tk/SPTK/src/bin/b2mc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/b2mc Modified Files: _b2mc.c b2mc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _b2mc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/b2mc/_b2mc.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _b2mc.c 8 Oct 2007 16:49:30 -0000 1.7 --- _b2mc.c 16 Oct 2007 02:20:58 -0000 1.8 *************** *** 65,71 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 65,71 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: b2mc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/b2mc/b2mc.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** b2mc.c 9 Oct 2007 10:07:11 -0000 1.16 --- b2mc.c 16 Oct 2007 02:20:59 -0000 1.17 *************** *** 76,85 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 76,94 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:44
|
Update of /cvsroot/sp-tk/SPTK/src/bin/grpdelay In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/grpdelay Modified Files: _grpdelay.c grpdelay.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: grpdelay.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/grpdelay/grpdelay.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** grpdelay.c 9 Oct 2007 10:07:07 -0000 1.18 --- grpdelay.c 16 Oct 2007 02:21:09 -0000 1.19 *************** *** 72,81 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 72,90 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _grpdelay.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/grpdelay/_grpdelay.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _grpdelay.c 8 Oct 2007 16:49:31 -0000 1.9 --- _grpdelay.c 16 Oct 2007 02:21:09 -0000 1.10 *************** *** 65,71 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 65,71 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:44
|
Update of /cvsroot/sp-tk/SPTK/src/bin/echo2 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/echo2 Modified Files: echo2.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: echo2.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/echo2/echo2.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** echo2.c 8 Oct 2007 16:49:31 -0000 1.15 --- echo2.c 16 Oct 2007 02:21:09 -0000 1.16 *************** *** 67,76 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 67,85 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:43
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mc2b In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/mc2b Modified Files: _mc2b.c mc2b.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _mc2b.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mc2b/_mc2b.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _mc2b.c 8 Oct 2007 16:49:31 -0000 1.7 --- _mc2b.c 16 Oct 2007 02:21:08 -0000 1.8 *************** *** 65,71 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 65,71 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: mc2b.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mc2b/mc2b.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** mc2b.c 9 Oct 2007 10:07:05 -0000 1.16 --- mc2b.c 16 Oct 2007 02:21:09 -0000 1.17 *************** *** 76,85 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 76,94 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:43
|
Update of /cvsroot/sp-tk/SPTK/src/bin/vopr In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/vopr Modified Files: vopr.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: vopr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vopr/vopr.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** vopr.c 9 Oct 2007 10:07:08 -0000 1.18 --- vopr.c 16 Oct 2007 02:21:08 -0000 1.19 *************** *** 76,80 **** /* Standard C Libraries */ #include <stdio.h> ! #include <string.h> #include <stdlib.h> #include <ctype.h> --- 76,89 ---- /* Standard C Libraries */ #include <stdio.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <stdlib.h> #include <ctype.h> *************** *** 82,88 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 91,97 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lbg In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lbg Modified Files: _lbg.c lbg.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _lbg.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lbg/_lbg.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** _lbg.c 8 Oct 2007 16:49:30 -0000 1.10 --- _lbg.c 16 Oct 2007 02:21:07 -0000 1.11 *************** *** 72,78 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 72,78 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: lbg.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lbg/lbg.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** lbg.c 9 Oct 2007 10:07:12 -0000 1.18 --- lbg.c 16 Oct 2007 02:21:07 -0000 1.19 *************** *** 92,101 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 92,110 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/vq In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/vq Modified Files: vq.c _vq.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: vq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vq/vq.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** vq.c 9 Oct 2007 10:07:08 -0000 1.15 --- vq.c 16 Oct 2007 02:21:08 -0000 1.16 *************** *** 81,90 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 81,99 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _vq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vq/_vq.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _vq.c 8 Oct 2007 16:49:36 -0000 1.8 --- _vq.c 16 Oct 2007 02:21:08 -0000 1.9 *************** *** 68,74 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 68,74 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/train In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/train Modified Files: train.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: train.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/train/train.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** train.c 8 Oct 2007 16:49:30 -0000 1.16 --- train.c 16 Oct 2007 02:21:08 -0000 1.17 *************** *** 76,86 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 76,95 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:41
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lspdf In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lspdf Modified Files: lspdf.c _lspdf.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _lspdf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lspdf/_lspdf.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _lspdf.c 8 Oct 2007 16:49:30 -0000 1.9 --- _lspdf.c 16 Oct 2007 02:21:03 -0000 1.10 *************** *** 69,75 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 69,75 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: lspdf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lspdf/lspdf.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** lspdf.c 9 Oct 2007 10:07:07 -0000 1.20 --- lspdf.c 16 Oct 2007 02:21:00 -0000 1.21 *************** *** 82,92 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 82,101 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:41
|
Update of /cvsroot/sp-tk/SPTK/src/bin/gcep In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/gcep Modified Files: _gcep.c gcep.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _gcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gcep/_gcep.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** _gcep.c 9 Oct 2007 04:33:29 -0000 1.10 --- _gcep.c 16 Oct 2007 02:20:57 -0000 1.11 *************** *** 78,84 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 78,84 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: gcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gcep/gcep.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** gcep.c 9 Oct 2007 10:06:58 -0000 1.20 --- gcep.c 16 Oct 2007 02:20:57 -0000 1.21 *************** *** 88,97 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 88,106 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:41
|
Update of /cvsroot/sp-tk/SPTK/src/bin/imglsadf In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/imglsadf Modified Files: _imglsadf.c imglsadf.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _imglsadf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/imglsadf/_imglsadf.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _imglsadf.c 8 Oct 2007 16:49:29 -0000 1.8 --- _imglsadf.c 16 Oct 2007 02:20:58 -0000 1.9 *************** *** 70,76 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 70,76 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: imglsadf.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/imglsadf/imglsadf.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** imglsadf.c 9 Oct 2007 10:07:09 -0000 1.22 --- imglsadf.c 16 Oct 2007 02:20:58 -0000 1.23 *************** *** 83,92 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 83,101 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:40
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mgcep In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/mgcep Modified Files: mgcep.c _mgcep.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _mgcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mgcep/_mgcep.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** _mgcep.c 9 Oct 2007 04:33:30 -0000 1.14 --- _mgcep.c 16 Oct 2007 02:20:58 -0000 1.15 *************** *** 80,86 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 80,86 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: mgcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mgcep/mgcep.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** mgcep.c 9 Oct 2007 10:07:06 -0000 1.22 --- mgcep.c 16 Oct 2007 02:20:58 -0000 1.23 *************** *** 95,104 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 95,113 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:39
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fig+fdrw In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fig+fdrw Modified Files: fdrw.c fig.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: fig.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fig+fdrw/fig.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** fig.c 9 Oct 2007 09:14:34 -0000 1.18 --- fig.c 16 Oct 2007 02:20:59 -0000 1.19 *************** *** 77,87 **** /* Standard C Libraries */ #include <stdio.h> ! #include <string.h> #include <stdlib.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,96 ---- /* Standard C Libraries */ #include <stdio.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <stdlib.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: fdrw.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fig+fdrw/fdrw.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** fdrw.c 9 Oct 2007 10:07:07 -0000 1.19 --- fdrw.c 16 Oct 2007 02:20:59 -0000 1.20 *************** *** 82,91 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 82,100 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:39
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fft In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/fft Modified Files: _fft.c fft.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _fft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft/_fft.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _fft.c 8 Oct 2007 16:49:29 -0000 1.9 --- _fft.c 16 Oct 2007 02:20:58 -0000 1.10 *************** *** 69,75 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 69,75 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: fft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft/fft.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** fft.c 9 Oct 2007 17:35:57 -0000 1.19 --- fft.c 16 Oct 2007 02:20:58 -0000 1.20 *************** *** 74,83 **** #include <stdlib.h> #include <math.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 74,92 ---- #include <stdlib.h> #include <math.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/xgr In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/xgr Modified Files: plot.c window.c xgr.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: window.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/window.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** window.c 3 Oct 2007 16:51:12 -0000 1.10 --- window.c 16 Oct 2007 02:20:53 -0000 1.11 *************** *** 56,63 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include "gcdata.h" #include "xgr.h" Display *display; Window main_window; --- 56,73 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include "gcdata.h" #include "xgr.h" + Display *display; Window main_window; *************** *** 106,114 **** screen = DefaultScreen(display); ! #if BSD bzero(&xsh, sizeof(xsh)); #else memset(&xsh, 0, sizeof(xsh)); #endif if (geometry) { int bitmask; --- 116,125 ---- screen = DefaultScreen(display); ! #if defined(HAVE_BZERO) && !defined(HAVE_MEMSET) bzero(&xsh, sizeof(xsh)); #else memset(&xsh, 0, sizeof(xsh)); #endif + if (geometry) { int bitmask; Index: plot.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/plot.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** plot.c 5 Oct 2007 18:21:42 -0000 1.14 --- plot.c 16 Oct 2007 02:20:53 -0000 1.15 *************** *** 203,212 **** n_max = ++w * ++h; n_plot = (density * n_max) / LEVEL; - - #if BSD - bzero((char *)flg, sizeof(*flg)*POINTS); - #else memset(flg, 0, sizeof(*flg)*POINTS); - #endif for (n=0; n<n_plot; n++) { --- 203,207 ---- Index: xgr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/xgr/xgr.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** xgr.c 30 Sep 2007 18:37:52 -0000 1.15 --- xgr.c 16 Oct 2007 02:20:53 -0000 1.16 *************** *** 79,95 **** #include <stdio.h> #include <stdlib.h> - #include "xgr.h" - - typedef enum _Boolean {FA, TR} Boolean; - char *BOOL[] = {"FALSE", "TRUE"}; ! #if HAS_STDLIB ! #include <strings.h> /* for rindex() */ ! #define RINDEX(s, c) rindex(s, c) #else ! #include <string.h> ! #define RINDEX(s, c) strrchr(s, c) #endif /* Defalut Value */ #define LANDSCAPE FA --- 79,94 ---- #include <stdio.h> #include <stdlib.h> ! #ifdef HAVE_STRING_H ! # include <string.h> #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif #endif + #include "xgr.h" + /* Defalut Value */ #define LANDSCAPE FA *************** *** 106,109 **** --- 105,111 ---- #define DISPLAY NULL + typedef enum _Boolean {FA, TR} Boolean; + char *BOOL[] = {"FALSE", "TRUE"}; + /* Command Name */ char *cmnd; *************** *** 151,156 **** cmnd = windowtitle = *argv; ! if (RINDEX(cmnd, '/')) ! cmnd = windowtitle = (char *)(RINDEX(cmnd, '/') + 1); while (--argc) { --- 153,158 ---- cmnd = windowtitle = *argv; ! if (strrchr(cmnd, '/')) ! cmnd = windowtitle = (char *)(strrchr(cmnd, '/') + 1); while (--argc) { |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/msvq In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/msvq Modified Files: _msvq.c msvq.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _msvq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/msvq/_msvq.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** _msvq.c 8 Oct 2007 16:49:29 -0000 1.8 --- _msvq.c 16 Oct 2007 02:20:57 -0000 1.9 *************** *** 69,75 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 69,75 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: msvq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/msvq/msvq.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** msvq.c 9 Oct 2007 10:07:11 -0000 1.16 --- msvq.c 16 Oct 2007 02:20:57 -0000 1.17 *************** *** 86,95 **** #include <ctype.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 86,104 ---- #include <ctype.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/histogram In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/histogram Modified Files: _histogram.c histogram.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _histogram.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/histogram/_histogram.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** _histogram.c 8 Oct 2007 16:49:27 -0000 1.11 --- _histogram.c 16 Oct 2007 02:20:54 -0000 1.12 *************** *** 58,64 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 58,64 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: histogram.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/histogram/histogram.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** histogram.c 9 Oct 2007 10:07:09 -0000 1.18 --- histogram.c 16 Oct 2007 02:20:54 -0000 1.19 *************** *** 79,88 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 79,97 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lpc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lpc Modified Files: lpc.c _lpc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _lpc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc/_lpc.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** _lpc.c 9 Oct 2007 04:33:30 -0000 1.10 --- _lpc.c 16 Oct 2007 02:20:56 -0000 1.11 *************** *** 73,79 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 73,79 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: lpc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc/lpc.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** lpc.c 9 Oct 2007 10:07:02 -0000 1.19 --- lpc.c 16 Oct 2007 02:20:56 -0000 1.20 *************** *** 78,87 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 78,96 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/spec In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/spec Modified Files: spec.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: spec.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/spec/spec.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** spec.c 9 Oct 2007 10:07:02 -0000 1.17 --- spec.c 16 Oct 2007 02:20:57 -0000 1.18 *************** *** 83,93 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #include <math.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 83,102 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #include <math.h> #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lpc2c In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/lpc2c Modified Files: lpc2c.c _lpc2c.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: lpc2c.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc2c/lpc2c.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** lpc2c.c 9 Oct 2007 10:06:58 -0000 1.16 --- lpc2c.c 16 Oct 2007 02:20:54 -0000 1.17 *************** *** 77,86 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 77,95 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _lpc2c.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lpc2c/_lpc2c.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _lpc2c.c 8 Oct 2007 16:49:28 -0000 1.9 --- _lpc2c.c 16 Oct 2007 02:20:55 -0000 1.10 *************** *** 67,73 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 67,73 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:38
|
Update of /cvsroot/sp-tk/SPTK/src/bin/psgr In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/psgr Modified Files: psgr.c eps.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: eps.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/psgr/eps.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** eps.c 9 Oct 2007 18:39:17 -0000 1.8 --- eps.c 16 Oct 2007 02:20:56 -0000 1.9 *************** *** 56,70 **** #include <time.h> #include <ctype.h> - #include "psgr.h" - - - #if HAS_STDLIB - #include <strings.h> #include <stdlib.h> ! #else ! #include <string.h> ! #include <stdlib.h> ! #endif /* HAS_STDLIB */ ! #define plot_min(x, min, pmin) ((x<min) ? ((x>=pmin)?(x):(pmin)) : (min)) --- 56,61 ---- #include <time.h> #include <ctype.h> #include <stdlib.h> ! #include "psgr.h" #define plot_min(x, min, pmin) ((x<min) ? ((x>=pmin)?(x):(pmin)) : (min)) Index: psgr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/psgr/psgr.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** psgr.c 9 Oct 2007 09:34:10 -0000 1.13 --- psgr.c 16 Oct 2007 02:20:56 -0000 1.14 *************** *** 65,81 **** #include <stdio.h> #include <stdlib.h> - #include <SPTK.h> - #include "psgr.h" ! char *BOOL[] = {"FALSE", "TRUE"}; ! #if HAS_STDLIB ! #include <strings.h> ! #define RINDEX(s, c) rindex(s, c) #else ! #include <string.h> ! #define RINDEX(s, c) strrchr(s, c) #endif #define MaxPaperTypes 6 /* Paper Media */ --- 65,90 ---- #include <stdio.h> #include <stdlib.h> ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif + #include "psgr.h" + + + char *BOOL[] = {"FALSE", "TRUE"}; + + #define MaxPaperTypes 6 /* Paper Media */ *************** *** 166,171 **** progname = *argv; ! if (RINDEX(progname, '/')) ! progname = (char *)(RINDEX(progname, '/') + 1); while (--argc) { if (*(str=*++argv)=='-') { --- 175,180 ---- progname = *argv; ! if (strrchr(progname, '/')) ! progname = (char *)(strrchr(progname, '/') + 1); while (--argc) { if (*(str=*++argv)=='-') { |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:37
|
Update of /cvsroot/sp-tk/SPTK/src/bin/average In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/average Modified Files: average.c _average.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: average.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/average/average.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** average.c 9 Oct 2007 10:06:58 -0000 1.18 --- average.c 16 Oct 2007 02:20:53 -0000 1.19 *************** *** 78,87 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 78,96 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif Index: _average.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/average/_average.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** _average.c 8 Oct 2007 16:49:27 -0000 1.9 --- _average.c 16 Oct 2007 02:20:53 -0000 1.10 *************** *** 65,71 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 65,71 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:37
|
Update of /cvsroot/sp-tk/SPTK/src/bin/step In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/step Modified Files: step.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: step.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/step/step.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** step.c 8 Oct 2007 16:49:30 -0000 1.16 --- step.c 16 Oct 2007 02:20:59 -0000 1.17 *************** *** 75,84 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 75,93 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |
From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:37
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ramp In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/ramp Modified Files: ramp.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: ramp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ramp/ramp.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ramp.c 8 Oct 2007 16:49:30 -0000 1.16 --- ramp.c 16 Oct 2007 02:20:59 -0000 1.17 *************** *** 78,87 **** #include <stdio.h> #include <stdlib.h> ! #include <string.h> #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 78,96 ---- #include <stdio.h> #include <stdlib.h> ! ! #ifdef HAVE_STRING_H ! # include <string.h> ! #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif ! #endif ! #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |