Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(444)

Unified Diff: lib/freebl/mpi/utils/basecvt.c

Issue 201830043: Bug 1118245 - Apply uniform style across NSS
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/freebl/mpi/tests/mptest-b.c ('k') | lib/freebl/mpi/utils/bbs_rand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/freebl/mpi/utils/basecvt.c
===================================================================
--- a/lib/freebl/mpi/utils/basecvt.c
+++ b/lib/freebl/mpi/utils/basecvt.c
@@ -10,51 +10,50 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mpi.h"
-#define IBASE 10
-#define OBASE 16
-#define USAGE "Usage: %s ibase obase [value]\n"
-#define MAXBASE 64
-#define MINBASE 2
+#define IBASE 10
+#define OBASE 16
+#define USAGE "Usage: %s ibase obase [value]\n"
+#define MAXBASE 64
+#define MINBASE 2
-int main(int argc, char *argv[])
-{
- int ix, ibase = IBASE, obase = OBASE;
+int main(int argc, char *argv[]) {
+ int ix, ibase = IBASE, obase = OBASE;
mp_int val;
ix = 1;
- if(ix < argc) {
+ if (ix < argc) {
ibase = atoi(argv[ix++]);
-
- if(ibase < MINBASE || ibase > MAXBASE) {
+
+ if (ibase < MINBASE || ibase > MAXBASE) {
fprintf(stderr, "%s: input radix must be between %d and %d inclusive\n",
- argv[0], MINBASE, MAXBASE);
+ argv[0], MINBASE, MAXBASE);
return 1;
}
}
- if(ix < argc) {
+ if (ix < argc) {
obase = atoi(argv[ix++]);
- if(obase < MINBASE || obase > MAXBASE) {
+ if (obase < MINBASE || obase > MAXBASE) {
fprintf(stderr, "%s: output radix must be between %d and %d inclusive\n",
- argv[0], MINBASE, MAXBASE);
+ argv[0], MINBASE, MAXBASE);
return 1;
}
}
mp_init(&val);
- while(ix < argc) {
- char *out;
- int outlen;
+ while (ix < argc) {
+ char *out;
+ int outlen;
mp_read_radix(&val, argv[ix++], ibase);
outlen = mp_radix_size(&val, obase);
out = calloc(outlen, sizeof(char));
mp_toradix(&val, out, obase);
printf("%s\n", out);
« no previous file with comments | « lib/freebl/mpi/tests/mptest-b.c ('k') | lib/freebl/mpi/utils/bbs_rand.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b