[FriBidi-commit] fribidi/bin fribidi-main.c,1.9,1.10

Behdad Esfahbod behdad at pdx.freedesktop.org
Wed Jun 9 13:01:02 PDT 2004


Update of /cvs/fribidi/fribidi/bin
In directory pdx:/tmp/cvs-serv31109/bin

Modified Files:
	fribidi-main.c 
Log Message:
Wow!!!  I use the wonderful packtab to compress the mirroring table now!  It
gives an smaller and faster table than the old binary search one!  Moreover,
packtab deals with tables with empty heads much better.  Voila!


Index: fribidi-main.c
===================================================================
RCS file: /cvs/fribidi/fribidi/bin/fribidi-main.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/fribidi-main.c	9 Jun 2004 14:59:21 -0000	1.9
+++ b/fribidi-main.c	9 Jun 2004 20:01:00 -0000	1.10
@@ -185,7 +185,10 @@
   exit (0);
 }
 
-char *my_fribidi_strdup (char *s)
+char *
+my_fribidi_strdup (
+  char *s
+)
 {
   char *m;
 
@@ -193,7 +196,7 @@
   if (!m)
     return NULL;
 
-  strcpy(m, s);
+  strcpy (m, s);
 
   return m;
 }




More information about the FriBidi-Commit mailing list