search for: n_props

Displaying 4 results from an estimated 4 matches for "n_props".

Did you mean: intprops
2007 Nov 10
0
[PATCH] swfdec: better variable parsing.
...nklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "libswfdec/swfdec_loader_internal.h" - -typedef struct { - const char * encoded; - const char * names[10]; - const char * values[10]; - guint n_props; -} Test; -Test tests[] = { - { "a=b", { "a" }, { "b" }, 1 }, - { "a=b&c=d", { "a", "c" }, { "b", "d" }, 2 }, - { "owned=Your+Mom", { "owned" }, { "Your Mom" }, 1 }, - { "numbe...
2007 Nov 12
0
2 commits - libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/various
...nklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "libswfdec/swfdec_loader_internal.h" - -typedef struct { - const char * encoded; - const char * names[10]; - const char * values[10]; - guint n_props; -} Test; -Test tests[] = { - { "a=b", { "a" }, { "b" }, 1 }, - { "a=b&c=d", { "a", "c" }, { "b", "d" }, 2 }, - { "owned=Your+Mom", { "owned" }, { "Your Mom" }, 1 }, - { "numbe...
2007 Feb 15
0
8 commits - libswfdec/swfdec_bits.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_tag.c libswfdec/swfdec_text.c libswfdec/swfdec_text.h test/swfedit_token.c test/various
...ion, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "libswfdec/swfdec_loader_internal.h" + +typedef struct { + char * encoded; + char * names[10]; + char * values[10]; + guint n_props; +} Test; +Test tests[] = { + { "a=b", { "a" }, { "b" }, 1 }, + { "a=b&c=d", { "a", "c" }, { "b", "d" }, 2 }, + { "owned=Your+Mom", { "owned" }, { "Your Mom" }, 1 } +}; + +#define ER...
2007 Jul 18
0
12 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_playback_alsa.c libswfdec/jpeg libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.h libswfdec/swfdec_as_context.c
...ncode.c b/test/various/urlencode.c index 0899b00..46654b6 100644 --- a/test/various/urlencode.c +++ b/test/various/urlencode.c @@ -24,10 +24,10 @@ #include "libswfdec/swfdec_loader_internal.h" typedef struct { - char * encoded; - char * names[10]; - char * values[10]; - guint n_props; + const char * encoded; + const char * names[10]; + const char * values[10]; + guint n_props; } Test; Test tests[] = { { "a=b", { "a" }, { "b" }, 1 }, diff-tree 48cf5039491bba2226179efd482aa27f82fde84d (from 8c6d2ad08e54eefcfc0a0c50c3234d5e644470d4) Autho...