Convert "typedef struct foo { ... } *bar" to
"struct foo { ... }; using bar = foo *".
Generated by a script written by Claude Code.
Approved-By: Tom Tromey <tom@tromey.com>
/* A type notification to GDB. An object of 'struct notif_server'
represents a type of notification. */
-typedef struct notif_server
+struct notif_server
{
/* The name of ack packet, for example, 'vStopped'. */
const char *ack_name;
/* Write event EVENT to OWN_BUF. */
void (*write) (struct notif_event *event, char *own_buf);
-} *notif_server_p;
+};
+using notif_server_p = struct notif_server *;
extern struct notif_server notif_stop;