ASDV-Cpp/Assignments/pointers/pointers1.h

8 lines
94 B
C
Raw Normal View History

2024-03-09 23:17:44 -06:00
#ifndef POINTERS1_H
#define POINTERS1_H
extern "C" {
int * dupParameter(int x);
}
#endif