summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-24 22:57:06 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-24 22:57:06 +0000
commitff549198359b678de006445babcd690548d92684 (patch)
tree48ed9a7f18dc73b5fddf125d852baf19f3442635 /src/main/Coord.c
parent5ba38c3a9476d0e73ec733084ebaa46b5c7b8642 (diff)
More subroutine name changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@778 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Coord.c')
-rw-r--r--src/main/Coord.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/Coord.c b/src/main/Coord.c
index 5fcb7637..b7e10b60 100644
--- a/src/main/Coord.c
+++ b/src/main/Coord.c
@@ -33,7 +33,7 @@ static int num_coords = 0;
Register a GF as a coordinate with a name, and index
and a direction
@enddesc
- @calls CCTK_GetHandle, CCTK_NewHandle, CCTK_Warn
+ @calls Util_GetHandle, Util_NewHandle, CCTK_Warn
@var name
@vdesc Name coordinate is registered as
@@ -73,7 +73,7 @@ int CCTK_RegisterCoordI(const char *name, int index, int dir)
struct Coordprops *new_coord;
/* Check that the method hasn't already been registered */
- handle = CCTK_GetHandle(coordinates, name, NULL);
+ handle = Util_GetHandle(coordinates, name, NULL);
if(handle < 0)
{
@@ -83,7 +83,7 @@ int CCTK_RegisterCoordI(const char *name, int index, int dir)
if(new_coord)
{
/* Get a handle for it. */
- handle = CCTK_NewHandle(&coordinates, name, new_coord);
+ handle = Util_NewHandle(&coordinates, name, new_coord);
/* Initialise the coordinate properties structure */
new_coord->name = (char *)name;
@@ -196,7 +196,7 @@ int CCTK_CoordIndex(const char *name)
for (handle = 0;;handle++)
{
- coord = (struct Coordprops *)CCTK_GetHandledData(coordinates, handle);
+ coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
if (coord)
{
if (CCTK_Equals(name,(const char *)coord->name))
@@ -230,7 +230,7 @@ CCTK_REAL CCTK_CoordOrigin(const char *name)
for (handle = 0;;handle++)
{
- coord = (struct Coordprops *)CCTK_GetHandledData(coordinates, handle);
+ coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
if (coord)
{
if (CCTK_Equals(name,(const char *)coord->name))