Home | History | Annotate | Line # | Download | only in indent
opt_T.c revision 1.1
      1 /* $NetBSD: opt_T.c,v 1.1 2021/10/22 20:54:36 rillig Exp $ */
      2 /* $FreeBSD$ */
      3 
      4 #indent input
      5 void
      6 example(void *arg)
      7 {
      8 	int cast = (custom_type_name)   *   arg;
      9 
     10 	int mult = (unknown_type_name)   *   arg;
     11 
     12 	/* See the option -ta for handling these types. */
     13 	int suff = (unknown_type_name_t)   *   arg;
     14 }
     15 #indent end
     16 
     17 #indent run -Tcustom_type_name
     18 void
     19 example(void *arg)
     20 {
     21 	int		cast = (custom_type_name)*arg;
     22 
     23 	int		mult = (unknown_type_name) * arg;
     24 
     25 	/* See the option -ta for handling these types. */
     26 	int		suff = (unknown_type_name_t) * arg;
     27 }
     28 #indent end
     29