aboutsummaryrefslogtreecommitdiff
path: root/uncrustify
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-06-16 00:09:29 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-06-17 10:29:49 +0200
commit761dd37e1f905719df2cd8f4420e4b46da80bffb (patch)
treeb93ec567a19e2407274fc3350ea51186aac8f091 /uncrustify
parent6f3fb463176c04c9a258fce820ec66724a4d13f4 (diff)
downloadlibbrandt-761dd37e1f905719df2cd8f4420e4b46da80bffb.tar.gz
libbrandt-761dd37e1f905719df2cd8f4420e4b46da80bffb.zip
refactor smc and ec crypto functions and ad 0og zkp
Diffstat (limited to 'uncrustify')
-rw-r--r--uncrustify/conf25
1 files changed, 13 insertions, 12 deletions
diff --git a/uncrustify/conf b/uncrustify/conf
index 8a04ef8..07a7816 100644
--- a/uncrustify/conf
+++ b/uncrustify/conf
@@ -908,7 +908,7 @@ nl_switch_brace = add # ignore/add/remove/force
908 908
909# Add a newline between ')' and '{' if the ')' is on a different line than the if/for/etc. 909# Add a newline between ')' and '{' if the ')' is on a different line than the if/for/etc.
910# Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch, and nl_catch_brace. 910# Overrides nl_for_brace, nl_if_brace, nl_switch_brace, nl_while_switch, and nl_catch_brace.
911nl_multi_line_cond = false # false/true 911nl_multi_line_cond = true # false/true
912 912
913# Force a newline in a define after the macro name for multi-line defines. 913# Force a newline in a define after the macro name for multi-line defines.
914nl_multi_line_define = false # false/true 914nl_multi_line_define = false # false/true
@@ -1093,14 +1093,14 @@ nl_create_while_one_liner = false # false/true
1093# 1093#
1094 1094
1095# The position of arithmetic operators in wrapped expressions 1095# The position of arithmetic operators in wrapped expressions
1096pos_arith = lead # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force 1096pos_arith = trail # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force
1097 1097
1098# The position of assignment in wrapped expressions. 1098# The position of assignment in wrapped expressions.
1099# Do not affect '=' followed by '{' 1099# Do not affect '=' followed by '{'
1100pos_assign = trail # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force 1100pos_assign = trail # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force
1101 1101
1102# The position of boolean operators in wrapped expressions 1102# The position of boolean operators in wrapped expressions
1103pos_bool = lead # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force 1103pos_bool = trail # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force
1104 1104
1105# The position of comparison operators in wrapped expressions 1105# The position of comparison operators in wrapped expressions
1106pos_compare = lead # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force 1106pos_compare = lead # ignore/lead/lead_break/lead_force/trail/trail_break/trail_force
@@ -1125,10 +1125,10 @@ pos_class_colon = ignore # ignore/lead/lead_break/lea
1125code_width = 80 # number 1125code_width = 80 # number
1126 1126
1127# Whether to fully split long 'for' statements at semi-colons 1127# Whether to fully split long 'for' statements at semi-colons
1128ls_for_split_full = false # false/true 1128ls_for_split_full = true # false/true
1129 1129
1130# Whether to fully split long function protos/calls at commas 1130# Whether to fully split long function protos/calls at commas
1131ls_func_split_full = false # false/true 1131ls_func_split_full = true # false/true
1132 1132
1133# 1133#
1134# Blank line options 1134# Blank line options
@@ -1144,7 +1144,7 @@ nl_after_func_proto = 0 # number
1144nl_after_func_proto_group = 0 # number 1144nl_after_func_proto_group = 0 # number
1145 1145
1146# The number of newlines after '}' of a multi-line function body 1146# The number of newlines after '}' of a multi-line function body
1147nl_after_func_body = 2 # number 1147nl_after_func_body = 3 # number
1148 1148
1149# The number of newlines after '}' of a multi-line function body in a class declaration 1149# The number of newlines after '}' of a multi-line function body in a class declaration
1150nl_after_func_body_class = 0 # number 1150nl_after_func_body_class = 0 # number
@@ -1212,20 +1212,20 @@ eat_blanks_before_close_brace = false # false/true
1212# 1212#
1213 1213
1214# Add or remove braces on single-line 'do' statement 1214# Add or remove braces on single-line 'do' statement
1215mod_full_brace_do = remove # ignore/add/remove/force 1215mod_full_brace_do = force # ignore/add/remove/force
1216 1216
1217# Add or remove braces on single-line 'for' statement 1217# Add or remove braces on single-line 'for' statement
1218mod_full_brace_for = add # ignore/add/remove/force 1218mod_full_brace_for = remove # ignore/add/remove/force
1219 1219
1220# Add or remove braces on single-line function definitions. (Pawn) 1220# Add or remove braces on single-line function definitions. (Pawn)
1221mod_full_brace_function = ignore # ignore/add/remove/force 1221mod_full_brace_function = ignore # ignore/add/remove/force
1222 1222
1223# Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'. 1223# Add or remove braces on single-line 'if' statement. Will not remove the braces if they contain an 'else'.
1224mod_full_brace_if = add # ignore/add/remove/force 1224mod_full_brace_if = ignore # ignore/add/remove/force
1225 1225
1226# Make all if/elseif/else statements in a chain be braced or not. Overrides mod_full_brace_if. 1226# Make all if/elseif/else statements in a chain be braced or not. Overrides mod_full_brace_if.
1227# If any must be braced, they are all braced. If all can be unbraced, then the braces are removed. 1227# If any must be braced, they are all braced. If all can be unbraced, then the braces are removed.
1228mod_full_brace_if_chain = true # false/true 1228mod_full_brace_if_chain = false # false/true
1229 1229
1230# Don't remove braces around statements that span N newlines 1230# Don't remove braces around statements that span N newlines
1231mod_full_brace_nl = 3 # number 1231mod_full_brace_nl = 3 # number
@@ -1323,7 +1323,7 @@ cmt_cpp_nl_end = false # false/true
1323cmt_cpp_to_c = false # false/true 1323cmt_cpp_to_c = false # false/true
1324 1324
1325# Whether to put a star on subsequent comment lines 1325# Whether to put a star on subsequent comment lines
1326cmt_star_cont = true # false/true 1326cmt_star_cont = false # false/true
1327 1327
1328# The number of spaces to insert at the start of subsequent comment lines 1328# The number of spaces to insert at the start of subsequent comment lines
1329cmt_sp_before_star_cont = 0 # number 1329cmt_sp_before_star_cont = 0 # number
@@ -1346,7 +1346,8 @@ cmt_insert_file_footer = "" # string
1346# The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment. 1346# The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment.
1347# Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff. 1347# Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff.
1348# Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... } 1348# Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... }
1349cmt_insert_func_header = "func_header" # string 1349cmt_insert_func_header = "" # string
1350#cmt_insert_func_header = "func_header" # string
1350 1351
1351# The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment. 1352# The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment.
1352# Will substitute $(class) with the class name. 1353# Will substitute $(class) with the class name.