mirror of
https://github.com/nasa/trick.git
synced 2025-05-07 19:18:11 +00:00
22 lines
625 B
C
22 lines
625 B
C
|
|
/*********************************** TRICK HEADER **************************
|
|
PURPOSE: (Test ip)
|
|
REFERENCES: (none)
|
|
ASSUMPTIONS AND LIMITATIONS: (Autocreated by trick_ui)
|
|
CLASS: (scheduled)
|
|
LIBRARY DEPENDENCY: (ip.o)
|
|
PROGRAMMERS: ((lin) (Thu Feb 27 14:57:16 CST 2003))
|
|
***************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include "../include/ip.h"
|
|
|
|
int ip_test(
|
|
/* RETURN: -- Always return zero */
|
|
INT_STR* I) /* INOUT: -- Parameter */
|
|
|
|
{
|
|
|
|
return ( 0 );
|
|
}
|