DRC
bd49803f92
Use consistent/modern code formatting for pointers
...
The convention used by libjpeg:
type * variable;
is not very common anymore, because it looks too much like
multiplication. Some (particularly C++ programmers) prefer to tuck the
pointer symbol against the type:
type* variable;
to emphasize that a pointer to a type is effectively a new type.
However, this can also be confusing, since defining multiple variables
on the same line would not work properly:
type* variable1, variable2; /* Only variable1 is actually a
pointer. */
This commit reformats the entirety of the libjpeg-turbo code base so
that it uses the same code formatting convention for pointers that the
TurboJPEG API code uses:
type *variable1, *variable2;
This seems to be the most common convention among C programmers, and
it is the convention used by other codec libraries, such as libpng and
libtiff.
2016-02-19 09:10:07 -06:00
..
2016-01-12 03:03:49 -06:00
2015-02-20 19:57:21 +00:00
2014-05-10 09:53:34 +00:00
2015-09-16 22:35:31 -05:00
2014-05-10 09:53:34 +00:00
2015-01-10 22:56:26 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2015-01-10 22:56:26 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2015-02-20 19:57:21 +00:00
2014-05-10 09:53:34 +00:00
2015-09-16 22:35:31 -05:00
2014-05-10 09:53:34 +00:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2009-03-09 13:34:17 +00:00
2015-02-20 19:57:21 +00:00
2014-05-10 09:53:34 +00:00
2015-09-16 22:35:31 -05:00
2014-05-10 09:53:34 +00:00
2015-10-10 10:31:33 -05:00
2015-02-20 19:57:21 +00:00
2014-05-10 09:53:34 +00:00
2015-09-16 22:35:31 -05:00
2014-05-10 09:53:34 +00:00
2015-01-10 22:56:26 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2014-05-09 18:00:32 +00:00
2015-01-14 13:27:32 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2014-05-10 09:53:34 +00:00
2015-02-20 19:57:21 +00:00
2014-05-10 09:53:34 +00:00
2015-09-16 22:35:31 -05:00
2014-05-10 09:53:34 +00:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2015-01-13 10:00:12 +00:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2015-01-16 03:13:16 +00:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-01-12 03:03:49 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2015-02-20 19:57:21 +00:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2013-10-09 18:39:44 +00:00
2015-10-14 20:34:32 -05:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2016-02-19 09:10:07 -06:00
2014-05-18 18:33:44 +00:00
2014-05-09 18:00:32 +00:00
2014-06-22 21:14:39 +00:00
2016-02-08 14:03:13 -06:00
2015-02-23 19:03:29 +00:00