File: rarray_append.pod

package info (click to toggle)
roy 1.0.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,072 kB
  • ctags: 776
  • sloc: sh: 7,068; ansic: 6,292; makefile: 248
file content (32 lines) | stat: -rw-r--r-- 671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

=head1 NAME

rarray_append - append a new entry to an rarray.

=head1 SYNOPSIS

#include <roy.h>

void * rarray_append (RArray *I<array>);

=head1 DESCRIPTION

This function appends a new entry to I<array>.  A pointer to the new
entry or slot is returned, which may be cast to the appropriate type
as defined when created using rarray_new(3).

=head1 RETURN VALUE

This function returns a pointer to a new entry in the rarray.

=head1 ERRORS

This call does not error.

=head1 SEE ALSO

rarray(3), rarray_append(3), rarray_free(3), 
rarray_last(3), rarray_len(3), rarray_new(3), 
rarray_nth(3), rarray_peak(3), rarray_pop(3), 
rarray_push(3), rarray_set_len(3), roy(3)