File: rarray_append.pod

package info (click to toggle)
roy 1.0.8-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,316 kB
  • ctags: 1,564
  • sloc: ansic: 14,459; sh: 8,259; makefile: 322
file content (33 lines) | stat: -rw-r--r-- 838 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
33

=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

L<rarray(3)|rarray(3)>, L<rarray_free(3)|rarray_free(3)>, 
L<rarray_last(3)|rarray_last(3)>, L<rarray_len(3)|rarray_len(3)>, 
L<rarray_new(3)|rarray_new(3)>, L<rarray_nth(3)|rarray_nth(3)>, 
L<rarray_peek(3)|rarray_peek(3)>, L<rarray_pop(3)|rarray_pop(3)>, 
L<rarray_push(3)|rarray_push(3)>, L<rarray_set_len(3)|rarray_set_len(3)>, 
L<roy(3)|roy(3)>