changing {} style to match majority of previous style

This commit is contained in:
Philippe Teuwen 2019-03-10 11:20:22 +01:00
commit 961d929f4d
320 changed files with 5502 additions and 10485 deletions

View file

@ -47,8 +47,7 @@ static const poly_t pzero = PZERO;
/* Definitions */
void mcpy(model_t *dest, const model_t *src)
{
void mcpy(model_t *dest, const model_t *src) {
/* Copies the parameters of src to dest.
* dest must be an initialised model.
*/
@ -63,8 +62,7 @@ void mcpy(model_t *dest, const model_t *src)
dest->name = src->name;
}
void mfree(model_t *model)
{
void mfree(model_t *model) {
/* Frees the parameters of model. */
if (!model) return;
pfree(&model->spoly);
@ -76,8 +74,7 @@ void mfree(model_t *model)
/* not model either, it might point to an array! */
}
int mcmp(const model_t *a, const model_t *b)
{
int mcmp(const model_t *a, const model_t *b) {
/* Compares a and b for identical effect, i.e. disregarding
* trailing zeroes in parameter polys.
* Intended for bsearch().
@ -93,8 +90,7 @@ int mcmp(const model_t *a, const model_t *b)
return (psncmp(&a->xorout, &b->xorout));
}
char *mtostr(const model_t *model)
{
char *mtostr(const model_t *model) {
/* Returns a malloc()-ed string containing a Williams model
* record representing the input model.
* mcanon() should be called on the argument before printing.
@ -154,8 +150,7 @@ char *mtostr(const model_t *model)
return (string);
}
void mcanon(model_t *model)
{
void mcanon(model_t *model) {
/* canonicalise a model */
unsigned long dlen;
@ -181,8 +176,7 @@ void mcanon(model_t *model)
mcheck(model);
}
void mcheck(model_t *model)
{
void mcheck(model_t *model) {
/* calculate a check for the model */
poly_t checkstr, check, xorout, magic;
@ -215,8 +209,7 @@ void mcheck(model_t *model)
model->magic = magic;
}
void mrev(model_t *model)
{
void mrev(model_t *model) {
/* reverse the model to calculate reversed CRCs */
/* Here we invert RefIn and RefOut so that the user need only
* reverse the order of characters in the arguments, not the
@ -246,8 +239,7 @@ void mrev(model_t *model)
mnovel(model);
}
void mnovel(model_t *model)
{
void mnovel(model_t *model) {
/* remove name and check string from modified model */
model->name = NULL;
pfree(&model->check);