diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-17 14:03:11 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-07-17 15:42:51 -0400 |
commit | 928f60ecca4d577b35ac11efa9e9566c779a41b4 (patch) | |
tree | 5420bbb942ffd42f14bdac83847103dc60bded9e | |
parent | 2cabb7f06594b7c63374d29e9bd7607f3bfc5c5e (diff) | |
download | expac-928f60ecca4d577b35ac11efa9e9566c779a41b4.tar.xz |
add %! as an auto-increment record counter
-rw-r--r-- | README.pod | 2 | ||||
-rw-r--r-- | expac.c | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -126,6 +126,8 @@ The format argument allows the following interpreted sequences: %w install reason + %! result number (auto-incremented counter, starts at 0) + %% literal % Note that for any lowercase tokens aside from %m and %k, full printf support is @@ -57,6 +57,7 @@ const char *format = NULL; const char *timefmt = NULL; const char *listdelim = NULL; const char *delim = NULL; +int pkgcounter = 0; typedef const char *(*extractfn)(void*); @@ -406,6 +407,9 @@ static int print_pkg(pmpkg_t *pkg, const char *format) { case 'w': /* install reason */ out += printf(fmt, alpm_pkg_get_reason(pkg) ? "dependency" : "explicit"); break; + case '!': /* result number */ + out += printf("%d", pkgcounter++); + break; /* times */ case 'b': /* build date */ |