1 /*
2 ** interp.c for elfsh
3 **
4 ** Started on  Fri Nov  2 15:20:41 2001 mayhem
5 ** Last update Tue Feb 18 15:44:21 2003 mayhem
6 */
7 #include "elfsh.h"
8 
9 
10 
11 
12 /* Display the interpretor (.interp) section */
cmd_interp()13 int		cmd_interp()
14 {
15   char		*name;
16 
17   if ((name = elfsh_get_interp(world.current)) == NULL)
18     RET(-1);
19   printf("\n [SHT_INTERP] : %s \n\n", name);
20   return (0);
21 }
22