~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to interpolate.c

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-04-22 13:31:05 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20070422133105-tkmhz328g2p0epz1
Tags: 1:1.5.1.2-1
* new upstream point release.
* debian/changelog.upstream: upstream changes taken from mailing list
  announcement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright 2006 Jon Loeliger
3
3
 */
4
4
 
5
 
#include <string.h>
6
 
 
7
5
#include "git-compat-util.h"
8
6
#include "interpolate.h"
9
7
 
57
55
        const char *src = orig;
58
56
        char *dest = result;
59
57
        int newlen = 0;
60
 
        char *name, *value;
 
58
        const char *name, *value;
61
59
        int namelen, valuelen;
62
60
        int i;
63
61
        char c;