~ubuntu-branches/ubuntu/raring/parrot/raring-proposed

« back to all changes in this revision

Viewing changes to src/string/encoding/ucs2.c

  • Committer: Bazaar Package Importer
  • Author(s): Allison Randal
  • Date: 2011-07-30 18:45:03 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110730184503-34d4mprtfx6pt5h3
Tags: 3.6.0-1
* New upstream release
* debian/watch:
  - Modified regular expression to capture numbered directory name
    (patch from Dominique Dumont).
* debian/rules:
  - Split build-arch and build-indep, resolving lintian warning.
  - Update path to pbc_disassemble for manpage generation (patch
    from Dominique Dumont).
* debian/patches:
  - Added patch 02_fix_perl_interpreter_path.patch, resolving
    lintian warnings.
* debian/control:
  - Added DM-Upload-Allowed field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
static void ucs2_check_codepoint(PARROT_INTERP, UINTVAL c)
31
31
        __attribute__nonnull__(1);
32
32
 
33
 
static size_t ucs2_hash(SHIM_INTERP,
 
33
static size_t ucs2_hash(PARROT_INTERP,
34
34
    ARGIN(const STRING *src),
35
35
    size_t hashval)
36
36
        __attribute__nonnull__(2);
37
37
 
38
 
static UINTVAL ucs2_iter_get(SHIM_INTERP,
 
38
static UINTVAL ucs2_iter_get(PARROT_INTERP,
39
39
    ARGIN(const STRING *str),
40
40
    ARGIN(const String_iter *i),
41
41
    INTVAL offset)
42
42
        __attribute__nonnull__(2)
43
43
        __attribute__nonnull__(3);
44
44
 
45
 
static UINTVAL ucs2_iter_get_and_advance(SHIM_INTERP,
 
45
static UINTVAL ucs2_iter_get_and_advance(PARROT_INTERP,
46
46
    ARGIN(const STRING *str),
47
47
    ARGMOD(String_iter *i))
48
48
        __attribute__nonnull__(2)
59
59
        FUNC_MODIFIES(*str)
60
60
        FUNC_MODIFIES(*i);
61
61
 
62
 
static void ucs2_iter_skip(SHIM_INTERP,
63
 
    SHIM(const STRING *str),
 
62
static void ucs2_iter_skip(PARROT_INTERP,
 
63
    const STRING *str,
64
64
    ARGMOD(String_iter *i),
65
65
    INTVAL skip)
66
66
        __attribute__nonnull__(3)