File: New_functions

package info (click to toggle)
wcstools 3.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,820 kB
  • ctags: 4,516
  • sloc: ansic: 107,558; sh: 270; makefile: 264; sed: 4
file content (21 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
April 25, 1996

Two new functions are added in this version of NED client.

1.  Expand the reference code
      
      For a given 19-digit reference code, the function returns the detailed
      information about the it. 

      int ned_ex_refcode(char *refcode, struct reference *full_ref);

2.  Bibligraphic search for a given object

      For a given object name, it will return all the references for it
      in NED database. 

      int ned_ref(char *objname, int begin_year, int end_year,
		       int *no, CrossID **cp, NedRef **refp);

Please read NED_client for more detailed description. ex_refcode.c and ref.c
serve as simple examples to use the new functions.