~ubuntu-branches/debian/sid/rpm/sid

« back to all changes in this revision

Viewing changes to rpmio/rpmstring.h

  • Committer: Package Import Robot
  • Author(s): Michal Čihař
  • Date: 2013-06-06 11:39:34 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20130606113934-ela3du14fyba0t6u
Tags: 4.11.0.1-1
* New upstream release.
* Bump standards to 3.9.4.
* Refresh patches, update patch from Fedora.
* Build with Lua 5.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
{
98
98
    if (c >= '0' && c <= '9')
99
99
        return (c - '0');
 
100
    if (c >= 'a' && c <= 'f')
 
101
        return (c - 'a') + 10;
100
102
    if (c >= 'A' && c <= 'F')
101
103
        return (c - 'A') + 10;
102
 
    if (c >= 'a' && c <= 'f')
103
 
        return (c - 'a') + 10;
104
104
    return 0;
105
105
}
106
106