Skip to content

Commit

Permalink
added ncint_vard.c
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jul 6, 2019
1 parent 7610f38 commit 6c704c5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/ncint/ncint_vard.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @internal The nc_versions of the vard functions.
*
* @author Ed Hartnett
*/

#include "config.h"
#include <stdlib.h>
#include <pio_internal.h>
#include "ncintdispatch.h"

/**
* Same as PIOc_put_vard_int().
*
* @return PIO_NOERR on success, error code otherwise.
* @author Ed Hartnett
*/
int
nc_put_vard_int(int ncid, int varid, int decompid, const size_t recnum,
const int *op)
{
return PIOc_put_vard_tc(ncid, varid, decompid, (PIO_Offset)recnum, NC_INT,
op);
}

0 comments on commit 6c704c5

Please sign in to comment.